/* T22 Top Call Tracking — topcalltracking.com
   Palette: burgundy #7B2D26 / dark #5F211C / soft #FBE9E7 / ink #2A1A18 on white + warm cream #FBF7F2
   Typography: DM Sans (display) + Inter (body).
   Layout: MAGAZINE. Centered masthead with a Vol. / May 2026 date stamp and rule lines.
   Two-column body: a main article column plus a sticky sidebar of widgets (running ranked
   list, editor card, CTA widget). Drop-cap on the lede. Pull-quote with a full top+bottom
   border. Outlined cards (no soft drop shadows). Authoritative editorial voice.
   Distinct from the violet soft-shadow comparison grid of paypercallplatforms. */

:root {
  --bg: #FFFFFF;
  --cream: #FBF7F2;
  --cream-2: #F5EEE6;
  --bg-card: #FFFFFF;
  --ink: #2A1A18;
  --ink-soft: #4A3530;
  --muted: #8A746E;
  --rule: #E6DAD3;
  --rule-strong: #D6C4BB;
  --accent: #7B2D26;
  --accent-dark: #5F211C;
  --accent-soft: #FBE9E7;
  --gold: #9A6A2F;
  --good: #2F7A52;
  --good-soft: #E3F2E9;
  --warn: #B26B16;
  --bad: #B23A2E;
  --max: 1180px;
  --max-prose: 720px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.72;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; text-decoration-thickness: 1px; }
a:hover { color: var(--accent-dark); }

h1, h2, h3, h4, h5 {
  font-family: 'DM Sans', 'Inter', sans-serif;
  color: var(--ink);
  letter-spacing: -0.015em;
  margin: 1.5em 0 .5em;
  font-weight: 700;
}
h1 { font-size: 46px; line-height: 1.08; letter-spacing: -0.025em; margin-top: 0; }
h2 { font-size: 29px; line-height: 1.2; margin-top: 1.7em; }
h3 { font-size: 21px; line-height: 1.3; margin-top: 1.6em; }
h4 { font-size: 17px; line-height: 1.35; font-weight: 700; letter-spacing: 0; }
p { margin: 0 0 1.1em; }
strong { font-weight: 700; color: var(--ink); }
hr.divider { border: 0; border-top: 1px solid var(--rule); margin: 2.4em 0; }

@media (max-width: 760px) {
  body { font-size: 16px; }
  h1 { font-size: 33px; }
  h2 { font-size: 24px; }
  h3 { font-size: 19px; }
}

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.container-prose { max-width: var(--max-prose); margin: 0 auto; padding: 0 24px; }

/* === Masthead (centered, date-stamped, rule lines) === */
.site-header.masthead {
  background: var(--bg);
  border-bottom: 3px double var(--accent);
  position: relative;
}
.masthead-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  padding-top: 18px; padding-bottom: 14px;
}
.masthead-rule {
  display: flex; align-items: center; font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted); font-weight: 600;
}
.masthead-rule-l { justify-content: flex-start; }
.masthead-rule-r { justify-content: flex-end; }
.masthead-rule::before, .masthead-rule::after { content: ""; height: 1px; background: var(--rule-strong); flex: 1; }
.masthead-rule-l span { padding-right: 14px; }
.masthead-rule-l::before { display: none; }
.masthead-rule-l::after { margin-left: 0; }
.masthead-rule-r span { padding-left: 14px; }
.masthead-rule-r::after { display: none; }
.masthead-rule-r::before { margin-right: 0; }

.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); justify-self: center; }
.brand:hover { color: var(--accent); }
.brand-mark {
  width: 40px; height: 40px; border-radius: 9px;
  background: var(--accent); color: #fff;
  display: inline-flex; align-items: center; justify-content: center; flex: none;
}
.brand-name {
  font-family: 'DM Sans', serif; font-weight: 700; font-size: 26px; letter-spacing: -0.02em;
  line-height: 1;
}

.nav {
  grid-column: 1 / -1; justify-self: center;
  display: flex; align-items: center; gap: 26px; font-size: 14px; font-weight: 600;
  padding-top: 12px; margin-top: 12px; border-top: 1px solid var(--rule);
  width: 100%; justify-content: center;
}
.nav a { color: var(--ink-soft); text-decoration: none; text-transform: uppercase; letter-spacing: 0.06em; font-size: 12.5px; }
.nav a:hover { color: var(--accent); }
.nav .btn-sm { color: #fff; text-transform: none; letter-spacing: 0; font-size: 13px; }
.nav-toggle {
  display: none; background: var(--cream); border: 1px solid var(--rule-strong);
  border-radius: 8px; padding: 8px 14px; font-weight: 600; cursor: pointer; color: var(--ink);
  position: absolute; top: 16px; right: 24px;
}
@media (max-width: 860px) {
  .masthead-inner { grid-template-columns: 1fr; text-align: center; padding-top: 16px; }
  .masthead-rule { justify-content: center; font-size: 10px; }
  .nav-toggle { display: inline-block; }
  .nav {
    display: none; flex-direction: column; gap: 0; padding: 8px 0 4px; border-top: 1px solid var(--rule);
  }
  .nav.open { display: flex; }
  .nav a { padding: 11px 0; border-bottom: 1px solid var(--rule); width: 100%; text-align: center; }
  .nav a:last-child { border-bottom: 0; }
}

/* === Buttons === */
.btn {
  display: inline-block; padding: 13px 24px;
  border-radius: 6px; font-weight: 700; text-decoration: none;
  font-size: 15px; letter-spacing: 0.005em; transition: background .12s, color .12s, border-color .12s;
  border: 1px solid transparent; font-family: 'DM Sans', sans-serif;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); color: #fff; }
.btn-secondary { background: var(--bg); color: var(--ink); border-color: var(--rule-strong); }
.btn-secondary:hover { background: var(--cream); color: var(--accent); border-color: var(--accent); }
.btn-sm { padding: 9px 16px; font-size: 13px; }
.btn-block { display: block; width: 100%; text-align: center; }

/* === Breadcrumbs === */
.breadcrumb { font-size: 13px; color: var(--muted); padding: 18px 0 6px; font-weight: 500; }
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent); }

/* === Cover (homepage hero, centered editorial) === */
.cover {
  background: var(--cream);
  border-bottom: 1px solid var(--rule);
  padding: 56px 0 50px;
  text-align: center;
}
.cover-eyebrow {
  display: inline-block; font-size: 12px; font-weight: 700; color: var(--accent);
  letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 18px;
}
.cover h1 { max-width: 18ch; margin: 0 auto 18px; }
.cover-deck { font-size: 20px; color: var(--ink-soft); max-width: 60ch; margin: 0 auto 24px; line-height: 1.55; }
.cover-byline {
  display: inline-flex; align-items: center; gap: 10px; font-size: 14px; color: var(--muted);
  margin-bottom: 26px;
}
.cover-byline img { width: 44px; height: 44px; border-radius: 50%; border: 2px solid var(--bg); box-shadow: 0 0 0 1px var(--rule-strong); }
.cover-byline a { color: var(--ink); font-weight: 600; }
.cover-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* === Two-column magazine layout === */
.layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 312px;
  gap: 52px;
  align-items: start;
  padding-top: 44px; padding-bottom: 16px;
}
.main-col { min-width: 0; max-width: 760px; }
@media (max-width: 1000px) {
  .layout { grid-template-columns: 1fr; gap: 0; }
  .rail { margin-top: 36px; }
}

/* Homepage blocks within the main column */
.block { margin-bottom: 8px; padding-bottom: 8px; }
.block + .block { margin-top: 28px; }
.block .kicker {
  display: inline-block; font-size: 11px; font-weight: 700; color: var(--accent);
  letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 4px;
}
.block h2 { margin-top: 0.1em; }

/* === Sidebar widgets (the signature) === */
.rail { position: sticky; top: 24px; display: flex; flex-direction: column; gap: 22px; }
.widget {
  background: var(--bg-card); border: 1px solid var(--rule-strong); border-radius: 8px;
  padding: 20px 22px;
}
.widget-title {
  font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 700; margin: 0 0 4px;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink);
}
.widget-sub { font-size: 12px; color: var(--muted); margin: 0 0 12px; }
.widget p { font-size: 13.5px; color: var(--ink-soft); margin: 0 0 12px; line-height: 1.55; }

.widget-ranked { background: var(--cream); }
.rk-list { list-style: none; counter-reset: rk; margin: 0; padding: 0; }
.rk-list li {
  display: grid; grid-template-columns: 1fr auto; align-items: center;
  gap: 8px; padding: 10px 0; border-bottom: 1px solid var(--rule);
}
.rk-list li:last-child { border-bottom: 0; }
.rk-list li.is-active { background: var(--accent-soft); margin: 0 -22px; padding-left: 22px; padding-right: 22px; }
.rk-list a { text-decoration: none; color: var(--ink); }
.rk-list a:hover .rk-name { color: var(--accent); }
.rk-name { display: block; font-weight: 700; font-size: 14px; font-family: 'DM Sans', sans-serif; }
.rk-pin {
  display: inline-block; background: var(--accent); color: #fff; font-size: 9px; font-weight: 700;
  padding: 1px 6px; border-radius: 999px; margin-left: 7px; vertical-align: middle; letter-spacing: 0.04em;
}
.rk-meta { display: block; font-size: 11.5px; color: var(--muted); }
.rk-score { font-family: 'DM Sans', sans-serif; font-weight: 700; color: var(--accent); font-size: 15px; }

.widget-editor { display: grid; grid-template-columns: 64px 1fr; gap: 14px; align-items: start; }
.widget-editor img { width: 64px; height: 64px; border-radius: 50%; }
.widget-editor a { font-size: 13px; font-weight: 700; }

.widget-cta { background: var(--accent); border-color: var(--accent-dark); color: #fff; text-align: center; }
.widget-cta .widget-title { color: #fff; }
.widget-cta p { color: #F4D9D6; }
.widget-cta .btn-primary { background: #fff; color: var(--accent-dark); }
.widget-cta .btn-primary:hover { background: var(--cream); color: var(--accent-dark); }
.widget-fine { display: block; font-size: 11.5px; color: #F4D9D6; margin-top: 9px; }

/* === Drop-cap === */
.has-dropcap::first-letter {
  float: left; font-family: 'DM Sans', serif; font-weight: 700;
  font-size: 64px; line-height: 0.78; padding: 6px 12px 0 0; color: var(--accent);
}

/* === Pull-quote (full top + bottom border) === */
.pullquote {
  border-top: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  padding: 24px 0; margin: 32px 0; text-align: center;
}
.pullquote p {
  font-family: 'DM Sans', serif; font-size: 25px; line-height: 1.35; font-weight: 600;
  color: var(--ink); margin: 0; letter-spacing: -0.01em;
}
.pullquote-wide { margin: 36px 0; }
@media (max-width: 760px) { .pullquote p { font-size: 21px; } }

/* === TLDR / CTA blocks === */
.tldr {
  background: var(--cream); border: 1px solid var(--rule-strong);
  border-left: 4px solid var(--accent);
  border-radius: 6px; padding: 22px 24px; margin: 28px 0;
}
.tldr h4 {
  margin: 0 0 10px; font-size: 11px; color: var(--accent);
  letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700;
}
.tldr ul { margin: 0; padding-left: 20px; }
.tldr li { margin: 7px 0; color: var(--ink-soft); }
.tldr .overall {
  margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--rule);
  font-weight: 700; color: var(--accent); font-size: 14px; letter-spacing: 0.02em;
}

.tldr-cta {
  background: var(--accent-soft); border: 1px solid var(--rule-strong);
  border-radius: 8px; padding: 22px; margin: 24px 0; text-align: center;
}
.tldr-cta .btn { margin-bottom: 8px; }
.tldr-cta .subtext { font-size: 13px; color: var(--ink-soft); margin: 0; font-weight: 500; }

.tldr-crosslink {
  background: var(--cream); border: 1px solid var(--rule);
  border-left: 3px solid var(--gold);
  border-radius: 6px; padding: 16px 20px; margin: 22px 0;
  font-size: 15px; color: var(--ink-soft);
}
.tldr-crosslink p { margin: 0; }
.tldr-crosslink strong { color: var(--ink); }

.cta-card {
  background: var(--ink); color: #fff;
  border-radius: 8px; padding: 30px 28px; margin: 34px 0; text-align: center;
  border: 1px solid var(--ink);
}
.cta-card h4 { font-family: 'DM Sans', sans-serif; color: #fff; margin: 0 0 14px; font-size: 19px; font-weight: 700; }
.cta-card .btn-primary { background: var(--accent); color: #fff; }
.cta-card .btn-primary:hover { background: #fff; color: var(--accent-dark); }
.cta-card .subtext { color: #C9B6B1; font-size: 13px; margin: 12px 0 0; }

/* === Picks table (homepage ranked list) === */
.picks-table {
  width: 100%; border-collapse: collapse; margin: 22px 0;
  background: var(--bg-card); border: 1px solid var(--rule-strong); border-radius: 8px;
  overflow: hidden; font-size: 15px;
}
.picks-table th, .picks-table td {
  padding: 15px 16px; text-align: left; vertical-align: middle;
  border-bottom: 1px solid var(--rule);
}
.picks-table th {
  background: var(--cream-2); font-size: 11px; font-weight: 700;
  color: var(--ink-soft); letter-spacing: 0.08em; text-transform: uppercase;
}
.picks-table tr:last-child td { border-bottom: 0; }
.picks-table .tool { display: flex; align-items: center; gap: 9px; flex-wrap: wrap; }
.picks-table .tool strong { font-weight: 700; font-family: 'DM Sans', sans-serif; }
.picks-table .top-pick { background: var(--accent-soft); }
.picks-table .top-pick td:first-child { border-left: 3px solid var(--accent); padding-left: 13px; }
.picks-table .badge {
  display: inline-block; background: var(--accent); color: #fff;
  font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 4px;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.picks-table td.rank-cell { width: 50px; font-family: 'DM Sans', sans-serif; font-weight: 700; color: var(--muted); font-size: 18px; }
.picks-table td.score-cell { font-family: 'DM Sans', sans-serif; font-weight: 700; color: var(--accent); font-size: 16px; }
@media (max-width: 720px) {
  .picks-table { font-size: 14px; }
  .picks-table th, .picks-table td { padding: 11px 9px; }
  .picks-table .col-best, .picks-table .col-price { display: none; }
}

/* === Rubric cards (outlined, numbered) === */
.rubric-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 22px 0; }
.rubric-card {
  border: 1px solid var(--rule-strong); border-radius: 8px; padding: 20px 22px; background: var(--bg-card);
  position: relative;
}
.rubric-card .rc-num {
  font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 700; color: var(--gold);
  letter-spacing: 0.1em;
}
.rubric-card h3 { margin: 4px 0 8px; font-size: 18px; }
.rubric-card p { font-size: 14px; color: var(--ink-soft); margin: 0; }
@media (max-width: 560px) { .rubric-grid { grid-template-columns: 1fr; } }

/* === Review cards on homepage === */
.review-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 18px; margin: 24px 0;
}
.review-card {
  background: var(--bg-card); border: 1px solid var(--rule-strong); border-radius: 8px;
  padding: 22px; transition: border-color .14s;
}
.review-card:hover { border-color: var(--accent); }
.review-card.featured { border-color: var(--accent); border-width: 2px; grid-column: 1 / -1; }
.review-card .rank {
  display: inline-block; font-size: 11px; font-weight: 700; color: var(--muted);
  background: var(--cream-2); padding: 3px 10px; border-radius: 999px;
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 12px;
}
.review-card.featured .rank { background: var(--accent); color: #fff; }
.review-card h3 { margin: 0 0 6px; font-size: 20px; }
.review-card .one-liner { font-size: 14px; color: var(--muted); margin-bottom: 14px; }
.review-card .stat-row { display: flex; gap: 20px; margin-bottom: 14px; font-size: 13px; }
.review-card .stat-row span { color: var(--muted); }
.review-card .stat-row strong { color: var(--ink); display: block; font-size: 16px; font-family: 'DM Sans', sans-serif; }
.review-card a.read { font-weight: 700; font-size: 14px; }
@media (max-width: 560px) { .review-grid { grid-template-columns: 1fr; } }

/* === Scorecard (bars) === */
.scorecard {
  background: var(--cream); border: 1px solid var(--rule-strong); border-radius: 8px;
  padding: 20px 22px; margin: 22px 0;
}
.scorecard h4 { margin: 0 0 14px; font-size: 13px; color: var(--ink); letter-spacing: 0.02em; }
.score-row { display: grid; grid-template-columns: 170px 1fr 46px; gap: 14px; align-items: center; margin: 11px 0; font-size: 14px; }
.score-row .lbl { color: var(--ink-soft); font-weight: 600; }
.score-row .bar { background: var(--cream-2); height: 9px; border-radius: 999px; overflow: hidden; border: 1px solid var(--rule); }
.score-row .bar span { display: block; height: 100%; background: var(--accent); border-radius: 999px; }
.score-row .bar span.hi { background: var(--good); }
.score-row .num { font-family: 'DM Sans', sans-serif; font-weight: 700; color: var(--accent); text-align: right; font-size: 14px; }
@media (max-width: 560px) { .score-row { grid-template-columns: 1fr 46px; } .score-row .bar { grid-column: 1 / -1; } }

/* === Economics callout === */
.econ-callout {
  display: grid; grid-template-columns: 56px 1fr; gap: 16px;
  background: var(--good-soft); border: 1px solid #BEDFCB;
  border-radius: 8px; padding: 18px 22px; margin: 22px 0;
}
.econ-callout .econ-ico {
  width: 44px; height: 44px; border-radius: 8px;
  background: #fff; color: var(--good);
  display: inline-flex; align-items: center; justify-content: center; font-weight: 700; font-size: 20px;
}
.econ-callout h4 { margin: 0 0 6px; font-size: 15px; color: #1F5A3B; }
.econ-callout p { margin: 0; font-size: 14px; color: #1F5A3B; }

/* === Pros/Cons === */
.proscons { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 22px 0; }
.proscons .pros, .proscons .cons {
  border: 1px solid var(--rule-strong); border-radius: 8px; padding: 20px 22px; background: var(--bg-card);
}
.proscons .pros { border-top: 3px solid var(--good); }
.proscons .cons { border-top: 3px solid var(--warn); }
.proscons h4 { margin: 0 0 10px; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; }
.proscons ul { padding-left: 20px; margin: 0; }
.proscons li { margin: 6px 0; font-size: 14px; }
@media (max-width: 560px) { .proscons { grid-template-columns: 1fr; } }

/* === Pricing list === */
.pricing-list { list-style: none; padding: 0; margin: 18px 0; }
.pricing-list li {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 18px; background: var(--cream); border: 1px solid var(--rule);
  border-radius: 6px; margin: 8px 0;
}
.pricing-list .plan { font-weight: 700; }
.pricing-list .price { font-family: 'DM Sans', sans-serif; font-weight: 700; color: var(--accent); font-size: 15px; }

/* === Author feature (about page) === */
.author-feature { display: grid; grid-template-columns: 120px 1fr; gap: 24px; align-items: start; margin: 24px 0; }
.author-feature img { width: 120px; height: 120px; border-radius: 50%; }
@media (max-width: 560px) { .author-feature { grid-template-columns: 1fr; } }

/* === Article body === */
.article-header { padding: 12px 0 8px; }
.article-header .kicker {
  display: inline-block; font-size: 12px; font-weight: 700;
  color: var(--accent); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 14px;
}
.article-header .lede { font-size: 20px; color: var(--ink-soft); margin-bottom: 18px; line-height: 1.55; }
.byline-row {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  font-size: 14px; color: var(--muted); margin-bottom: 8px;
}
.byline-row img { width: 40px; height: 40px; border-radius: 50%; }
.byline-row .sep { color: var(--rule-strong); }
.author-name { color: var(--ink); font-weight: 600; text-decoration: none; border-bottom: 1px dotted var(--muted); }
.author-mention { position: relative; }
.author-card {
  display: none; position: absolute; top: 24px; left: 0; z-index: 10;
  background: var(--ink); color: #fff;
  padding: 13px 15px; border-radius: 8px; font-size: 13px;
  width: 290px; line-height: 1.55; box-shadow: 0 12px 30px rgba(42,26,24,.3);
}
.author-card strong { display: block; font-weight: 700; margin-bottom: 4px; color: #fff; }
.author-mention:hover .author-card,
.author-name:focus + .author-card { display: block; }

.article-body p, .article-body ul, .article-body ol, .article-body details, .article-body table { margin-bottom: 1.15em; }

.tool-screenshot {
  margin: 28px 0; border: 1px solid var(--rule-strong); border-radius: 8px; overflow: hidden;
  background: var(--cream);
}
.tool-screenshot img { width: 100%; display: block; }
.tool-screenshot figcaption {
  font-size: 13px; color: var(--muted); padding: 11px 16px;
  background: var(--bg-card); border-top: 1px solid var(--rule);
}

/* === Methodology weight bars === */
.weight-row { display: grid; grid-template-columns: 200px 1fr 52px; gap: 14px; align-items: center; margin: 11px 0; font-size: 14px; }
.weight-row .bar { background: var(--cream-2); height: 9px; border-radius: 999px; overflow: hidden; border: 1px solid var(--rule); }
.weight-row .bar span { display: block; height: 100%; background: var(--accent); }
.weight-row .pct { font-family: 'DM Sans', sans-serif; font-weight: 700; color: var(--accent); text-align: right; font-size: 13px; }
@media (max-width: 560px) { .weight-row { grid-template-columns: 1fr 52px; } .weight-row .bar { grid-column: 1 / -1; } }

/* === Footer === */
.site-footer {
  background: var(--ink); color: #C9B6B1; padding: 50px 0 26px; margin-top: 60px;
}
.site-footer h4 { font-family: 'DM Sans', sans-serif; color: #fff; font-size: 14px; margin: 0 0 14px; letter-spacing: 0.04em; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 30px; padding-bottom: 26px;
  border-bottom: 1px solid #4A3530;
}
.foot-blurb { font-size: 14px; color: #C9B6B1; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.site-footer ul { list-style: none; padding: 0; margin: 0; font-size: 14px; }
.site-footer ul li { margin: 7px 0; }
.site-footer a { color: #C9B6B1; text-decoration: none; }
.site-footer a:hover { color: #fff; }
.disclosure { padding-top: 22px; font-size: 13px; color: #A88E88; line-height: 1.6; }
.disclosure strong { color: #fff; }
.disclosure a { color: #C9B6B1; }

/* References */
.references { font-size: 14px; color: var(--muted); border-top: 1px solid var(--rule); padding-top: 14px; margin-top: 32px; }
.references a { color: var(--ink-soft); }

.muted { color: var(--muted); }

/* === Reviews dropdown === */
.nav-dropdown { position: relative; }
.nav-dropdown > .dropdown-trigger {
  cursor: pointer; display: inline-flex; align-items: center; gap: 4px; text-decoration: none;
}
.nav-dropdown > .dropdown-trigger::after {
  content: "\25BE"; font-size: 0.72em; margin-left: 3px; opacity: 0.6; color: currentColor;
  transition: opacity .15s ease, color .15s ease;
}
.nav-dropdown:hover > .dropdown-trigger,
.nav-dropdown:focus-within > .dropdown-trigger { color: var(--accent); }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 10px); left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: var(--bg-card); border: 1px solid var(--rule-strong); border-radius: 8px;
  box-shadow: 0 16px 36px rgba(42,26,24,.14);
  min-width: 280px; padding: 8px 0;
  opacity: 0; visibility: hidden;
  transition: opacity .15s ease, transform .15s ease, visibility .15s; z-index: 60;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 18px; font-size: 13px; color: var(--ink); text-decoration: none; font-weight: 600;
  text-transform: none; letter-spacing: 0;
}
.nav-dropdown-menu a:hover { background: var(--accent-soft); color: var(--accent); }
.nav-dropdown-menu .pick-tag {
  font-size: 10px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--good); background: var(--good-soft); padding: 2px 8px; border-radius: 999px; margin-left: 12px;
}
@media (max-width: 860px) {
  .nav-dropdown { width: 100%; }
  .nav-dropdown-menu {
    position: static; transform: none; opacity: 1; visibility: visible;
    border: none; box-shadow: none; background: transparent;
    padding: 4px 0 0; min-width: 0; margin-top: 4px;
  }
  .nav-dropdown-menu a { padding: 8px 0; font-size: 13px; color: var(--muted); justify-content: center; }
  .nav-dropdown-menu a:hover { background: transparent; color: var(--accent); }
}
