/* Pamcoal — pamcoal.com (site 15)
   Vibe: blue-collar B2B / trades.
   Palette: white #FFFFFF / dark navy ink #0A1F44 / accent work-truck blue #1E40AF / safety yellow #F59E0B
   Typography: Roboto Condensed (display) + Inter (body)
   Layout: full-width section blocks, ROI-grade tables, no decorative flourishes. */

:root {
  --bg: #FFFFFF;
  --bg-soft: #F4F6FA;
  --bg-tint: #EEF2F8;
  --bg-strong: #0A1F44;
  --ink: #0A1F44;
  --ink-soft: #1F2937;
  --muted: #5C6470;
  --rule: #D7DCE4;
  --rule-strong: #B5BCC8;
  --card: #FFFFFF;
  --accent: #1E40AF;
  --accent-dark: #1E3A8A;
  --accent-soft: #E5EAF6;
  --safety: #F59E0B;
  --safety-soft: #FEF3C7;
  --good: #047857;
  --warn: #B45309;
  --bad: #B91C1C;
  --max: 1240px;
}

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

h1, h2, h3, h4 {
  font-family: 'Roboto Condensed', 'Arial Narrow', 'Inter', sans-serif;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 1.4em 0 .5em;
  font-weight: 700;
  text-transform: none;
}
h1 { font-size: 52px; line-height: 1.05; font-weight: 700; margin-top: 0; }
h2 { font-size: 30px; line-height: 1.18; margin-top: 1.6em; }
h3 { font-size: 22px; line-height: 1.3; }
h4 { font-size: 17px; line-height: 1.35; font-weight: 700; }
p { margin: 0 0 1.05em; }
@media (max-width: 760px) {
  body { font-size: 16px; }
  h1 { font-size: 36px; }
  h2 { font-size: 24px; }
}

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

/* === Site header === */
.site-header {
  border-bottom: 1px solid var(--rule);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 40;
}
.site-header > .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}
.brand-mark {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent);
  color: #fff;
  border-radius: 2px;
  flex-shrink: 0;
}
.brand-mark svg { width: 22px; height: 22px; }
.brand-words { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.brand-tag {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 2px;
  margin-top: 4px;
  text-transform: uppercase;
}

.nav { display: flex; align-items: center; gap: 26px; }
.nav a {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
}
.nav a:hover { color: var(--accent); }
.nav .btn { text-transform: uppercase; }
.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--ink);
  padding: 6px 12px;
  cursor: pointer;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
}
@media (max-width: 860px) {
  .nav-toggle { display: inline-block; }
  .nav { display: none; flex-basis: 100%; flex-direction: column; align-items: flex-start; gap: 12px; padding: 14px 0 4px; }
  .nav.open { display: flex; }
  .site-header > .container { flex-wrap: wrap; }
}

/* === Hero === */
.hero {
  background: var(--bg-strong);
  color: #fff;
  padding: 56px 0 40px;
  border-bottom: 6px solid var(--safety);
  position: relative;
}
.hero::before {
  content: '';
  position: absolute; left: 0; top: 0; right: 0; height: 4px;
  background: var(--accent);
}
.hero .container { position: relative; }
.hero .eyebrow {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--safety);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.hero h1 {
  color: #fff;
  font-size: 56px;
  line-height: 1.04;
  letter-spacing: -0.01em;
  font-weight: 700;
  max-width: 18ch;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.hero .lede {
  font-size: 19px;
  line-height: 1.55;
  color: #C8D0DC;
  max-width: 60ch;
  margin-bottom: 26px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.hero .trust-strip {
  display: flex; flex-wrap: wrap; gap: 18px;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #B5BCC8;
  border-top: 1px solid #1F2A40;
  padding-top: 18px;
}
.hero .trust-strip strong { color: #fff; font-weight: 700; }
.hero .trust-strip .sep { color: #5C6470; }
/* In the dark hero, override the dotted-underline author-name color so it's visible against the navy background. */
.hero .author-name {
  color: #fff;
  border-bottom-color: var(--safety);
}
.hero .author-name:hover, .hero .author-name:focus {
  color: var(--safety);
}
@media (max-width: 760px) {
  .hero { padding: 36px 0 28px; }
  .hero h1 { font-size: 36px; }
  .hero .lede { font-size: 17px; }
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border-radius: 2px;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.btn-primary { background: var(--safety); color: var(--ink); border-color: var(--safety); }
.btn-primary:hover { background: #D97706; border-color: #D97706; color: var(--ink); text-decoration: none; }
.btn-ghost { background: transparent; color: #fff; border-color: #fff; }
.btn-ghost:hover { background: #fff; color: var(--ink); text-decoration: none; }
.btn-sm { padding: 8px 14px; font-size: 13px; }

/* On a white background, primary button uses accent navy */
.section .btn-primary, .article-body .btn-primary, .cta-card .btn-primary, .tldr-cta .btn-primary, .widget .btn-primary {
  background: var(--accent); color: #fff; border-color: var(--accent);
}
.section .btn-primary:hover, .article-body .btn-primary:hover, .cta-card .btn-primary:hover, .tldr-cta .btn-primary:hover, .widget .btn-primary:hover {
  background: var(--accent-dark); border-color: var(--accent-dark); color: #fff;
}
.section .btn-ghost, .article-body .btn-ghost {
  color: var(--ink); border-color: var(--ink);
}
.section .btn-ghost:hover, .article-body .btn-ghost:hover { background: var(--ink); color: #fff; }

/* === Section blocks === */
.section { padding: 56px 0; border-bottom: 1px solid var(--rule); }
.section.alt { background: var(--bg-soft); }
.section .kicker {
  display: inline-block;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 14px;
  padding-left: 12px;
  border-left: 4px solid var(--safety);
}
.section h2 { margin-top: 0; max-width: 28ch; }

/* === ROI panel (contractor cost math) === */
.roi-panel {
  background: var(--bg-strong);
  color: #fff;
  padding: 32px 28px;
  border-left: 6px solid var(--safety);
  margin: 28px 0;
}
.roi-panel h3 {
  color: #fff;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 14px;
}
.roi-panel .roi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 18px; }
.roi-panel .roi-stat {
  border-top: 3px solid var(--safety);
  padding-top: 12px;
}
.roi-panel .roi-num {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-size: 36px;
  color: var(--safety);
  display: block;
  line-height: 1;
}
.roi-panel .roi-label {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #C8D0DC;
  margin-top: 8px;
  display: block;
}
.roi-panel p { color: #C8D0DC; font-size: 16px; line-height: 1.55; margin: 0; }
@media (max-width: 700px) { .roi-panel .roi-grid { grid-template-columns: 1fr; } }

/* === Picks table (rankings) === */
.picks-table { width: 100%; border-collapse: collapse; margin: 16px 0 8px; font-size: 15px; }
.picks-table thead th {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink);
  text-align: left;
  padding: 12px 14px;
  background: var(--bg-soft);
  border-bottom: 2px solid var(--ink);
}
.picks-table tbody td {
  padding: 14px;
  border-bottom: 1px solid var(--rule);
  vertical-align: top;
}
.picks-table tbody tr:hover { background: var(--bg-soft); }
.picks-table tbody tr.top-pick td:first-child {
  border-left: 4px solid var(--safety);
}
.picks-table tbody tr.top-pick td:nth-child(2) {
  position: relative;
}
.picks-table tbody tr.top-pick td:nth-child(2) .badge {
  display: inline-block;
  margin-left: 8px;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--safety);
  color: var(--ink);
  padding: 3px 8px;
  border-radius: 2px;
  vertical-align: middle;
}
.picks-table .score {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  color: var(--accent);
  font-size: 18px;
}
@media (max-width: 760px) {
  .picks-table thead { display: none; }
  .picks-table tbody td {
    display: block;
    border-bottom: none;
    padding: 4px 14px;
  }
  .picks-table tbody tr { display: block; padding: 12px 0; border-bottom: 1px solid var(--rule); }
  .picks-table tbody td::before {
    content: attr(data-label);
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-right: 8px;
    font-weight: 700;
  }
  .picks-table tbody td[data-label="Rank"] { font-weight: 700; }
  .picks-table tbody tr.top-pick td:first-child { border-left: 4px solid var(--safety); padding-left: 10px; }
}

/* === Comparison cost table (per-number cost math) === */
.cost-table { width: 100%; border-collapse: collapse; margin: 18px 0; font-size: 15px; }
.cost-table th, .cost-table td { padding: 12px 14px; border-bottom: 1px solid var(--rule); text-align: right; }
.cost-table th:first-child, .cost-table td:first-child { text-align: left; font-weight: 600; }
.cost-table thead th {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--bg-strong);
  color: #fff;
  border-bottom: none;
}
.cost-table .pick-row { background: var(--accent-soft); font-weight: 600; }
.cost-table .pick-row td:first-child { border-left: 4px solid var(--safety); }
.cost-table .total-row { background: var(--bg-soft); font-weight: 700; }

/* === Reviews grid === */
.reviews-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 28px; }
.review-card {
  border: 1px solid var(--rule);
  background: #fff;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
}
.review-card.featured {
  border: 2px solid var(--accent);
  border-top: 6px solid var(--safety);
  background: var(--accent-soft);
}
.review-card .rank {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.review-card.featured .rank { color: var(--accent); }
.review-card h3 {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.review-card .verdict { color: var(--muted); margin: 0 0 14px; font-size: 15px; }
.review-card .stat-row {
  display: flex; flex-direction: column; gap: 6px;
  font-size: 13px; color: var(--ink-soft);
  border-top: 1px solid var(--rule); padding-top: 12px; margin-top: auto;
}
.review-card .stat-row strong { color: var(--ink); font-family: 'Roboto Condensed', sans-serif; font-weight: 700; }
.review-card .more { margin-top: 14px; }
@media (max-width: 760px) { .reviews-grid { grid-template-columns: 1fr; } }

/* === Article (review and support pages) === */
.breadcrumb {
  font-size: 13px;
  color: var(--muted);
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
}
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent); }

.article-wrap { padding: 40px 0 56px; }
.article-wrap .container { max-width: 820px; }
.article-header { padding-bottom: 24px; border-bottom: 1px solid var(--rule); margin-bottom: 28px; }
.article-header .kicker {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 12px;
  padding: 4px 10px;
  display: inline-block;
  background: var(--safety-soft);
  border-left: 3px solid var(--safety);
}
.article-header h1 { margin: 0 0 14px; font-size: 44px; line-height: 1.08; }
.article-header .lede { font-size: 20px; line-height: 1.5; color: var(--ink-soft); margin-bottom: 18px; font-weight: 400; }
.article-header .byline-row {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  font-size: 14px; color: var(--muted);
}
.article-header .byline-row img { width: 36px; height: 36px; border-radius: 2px; }
.article-header .byline-row strong { color: var(--ink); }
.article-header .byline-row .sep { color: var(--rule-strong); }

.article-body { font-size: 17px; line-height: 1.7; }
.article-body p { font-size: 17px; }
.article-body ul, .article-body ol { margin: 0 0 1.2em; padding-left: 22px; }
.article-body li { margin-bottom: 6px; }
.article-body h2 { margin-top: 1.6em; }
.article-body h3 { margin-top: 1.4em; }
.article-body h4 { margin-top: 1.2em; }

/* === TLDR + inline TLDR CTA === */
.tldr {
  background: var(--bg-soft);
  border: 1px solid var(--rule);
  border-left: 6px solid var(--safety);
  padding: 20px 24px;
  margin: 24px 0;
}
.tldr h4 {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin: 0 0 10px;
  font-weight: 700;
}
.tldr ul { margin: 0; padding-left: 20px; }
.tldr li { margin-bottom: 6px; font-size: 16px; }
.tldr .overall {
  margin-top: 14px;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.tldr-cta {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  margin: -8px 0 24px;
}
.tldr-cta .subtext { font-size: 13px; color: var(--muted); margin: 0; }

/* === Editor-note cross-link === */
.tldr-crosslink {
  margin: 18px 0 28px;
  padding: 14px 18px;
  background: var(--bg-soft);
  border-left: 4px solid var(--accent);
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink);
}
.tldr-crosslink p { margin: 0; }
.tldr-crosslink strong { color: var(--ink); font-weight: 700; }
.tldr-crosslink a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; font-weight: 600; }
.tldr-crosslink a:hover { text-decoration: none; }

/* === CTA card === */
.cta-card {
  background: var(--accent-soft);
  border: 1px solid var(--rule);
  border-left: 6px solid var(--safety);
  padding: 24px 28px;
  margin: 32px 0;
}
.cta-card h4 {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.cta-card .btn { margin: 0; }
.cta-card .subtext { margin-top: 12px; margin-bottom: 0; font-size: 13px; color: var(--muted); }

/* === Pricing list === */
.pricing-list { list-style: none; padding: 0; margin: 16px 0; }
.pricing-list li {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  padding: 12px 0; border-bottom: 1px solid var(--rule); font-size: 16px;
}
.pricing-list .plan { font-family: 'Roboto Condensed', sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }
.pricing-list .price { color: var(--accent); font-family: 'Roboto Condensed', sans-serif; font-weight: 700; }

/* === Pros and cons === */
.proscons { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin: 22px 0; }
.proscons ul { padding-left: 20px; margin: 8px 0 0; }
.proscons li { margin-bottom: 6px; font-size: 16px; }
.proscons .pros h4 { color: var(--good); margin-top: 0; }
.proscons .cons h4 { color: var(--warn); margin-top: 0; }
@media (max-width: 600px) { .proscons { grid-template-columns: 1fr; } }

/* === Tool screenshot === */
.tool-screenshot {
  margin: 28px 0 32px;
  padding: 0;
  border: 1px solid var(--rule);
  background: var(--card);
}
.tool-screenshot img { display: block; width: 100%; height: auto; border-bottom: 1px solid var(--rule); }
.tool-screenshot figcaption {
  font-size: 13px;
  color: var(--muted);
  padding: 10px 14px;
  font-family: 'Inter', sans-serif;
}

/* === Author tooltip === */
.author-mention { position: relative; display: inline-block; }
.author-name {
  cursor: help;
  border-bottom: 1px dotted var(--accent);
  font-weight: 700; color: var(--ink);
  text-decoration: none;
}
.author-name:hover, .author-name:focus { color: var(--accent); }
.author-card {
  position: absolute; left: 0; top: calc(100% + 6px); z-index: 30;
  width: 300px; max-width: calc(100vw - 32px);
  background: #fff; border: 1px solid var(--rule); border-left: 4px solid var(--safety);
  padding: 12px 14px; box-shadow: 0 6px 20px rgba(10,31,68,.08);
  font-size: 13px; line-height: 1.55; color: var(--ink-soft);
  opacity: 0; visibility: hidden; transform: translateY(-4px);
  transition: opacity .15s ease, transform .15s ease, visibility .15s;
  pointer-events: none;
}
.author-card strong { display: block; color: var(--ink); font-size: 14px; margin-bottom: 4px; }
.author-mention:hover .author-card,
.author-name:focus ~ .author-card,
.author-card:hover { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }
@media (max-width: 600px) { .author-card { width: 260px; left: -20px; } }

/* === Decision tree === */
.decision-tree {
  border-top: 2px solid var(--ink);
  margin: 24px 0;
}
.decision-tree dt {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink);
  padding: 14px 0 4px;
}
.decision-tree dd {
  margin: 0 0 14px;
  padding-left: 20px;
  border-left: 4px solid var(--safety);
  color: var(--ink-soft);
}

/* === FAQ details === */
details {
  border-bottom: 1px solid var(--rule);
  padding: 14px 0;
}
details summary {
  cursor: pointer;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
  list-style: none;
  position: relative;
  padding-right: 24px;
}
details summary::-webkit-details-marker { display: none; }
details summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
}
details[open] summary::after { content: '\2013'; }
details p { margin: 10px 0 0; color: var(--ink-soft); }

/* === Footer === */
.site-footer {
  background: var(--bg-strong);
  color: #B5BCC8;
  padding: 48px 0 24px;
  margin-top: 0;
  border-top: 6px solid var(--safety);
}
.site-footer h4 {
  color: #fff; font-size: 13px;
  text-transform: uppercase; letter-spacing: 0.14em;
  margin-bottom: 14px; font-weight: 700;
  font-family: 'Roboto Condensed', sans-serif;
}
.site-footer a { color: #B5BCC8; text-decoration: none; }
.site-footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 28px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 8px; font-size: 14px; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.disclosure {
  border-top: 1px solid #1F2A40;
  padding-top: 18px;
  font-size: 12px;
  color: #6B7480;
  line-height: 1.6;
}
.disclosure a { color: inherit; text-decoration: underline; }
.disclosure a:hover { color: #fff; }

/* === Utility === */
.muted { color: var(--muted); font-size: 14px; }
.divider { border: none; border-top: 1px solid var(--rule); margin: 36px 0; }
.text-callout {
  background: var(--safety-soft);
  border-left: 4px solid var(--safety);
  padding: 14px 18px;
  margin: 22px 0;
  font-size: 16px;
  color: var(--ink-soft);
}

.about-hero {
  display: flex; align-items: center; gap: 18px;
  padding: 18px 20px;
  background: var(--bg-soft);
  border: 1px solid var(--rule);
  border-left: 4px solid var(--safety);
  margin-bottom: 24px;
}
.about-hero img { width: 64px; height: 64px; border-radius: 2px; }
.about-hero .name { font-family: 'Roboto Condensed', sans-serif; font-weight: 700; font-size: 18px; }
.about-hero .role { font-size: 13px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; }

/* === Reviews dropdown === */
.nav-dropdown { position: relative; }
.nav-dropdown > .dropdown-trigger {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  /* font-family, font-size, font-weight, text-transform, letter-spacing,
     color all inherit from the sibling nav <a> rule so the trigger matches
     the rest of the nav. */
}
.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,
.nav-dropdown > .dropdown-trigger:hover { color: var(--accent); }
.nav-dropdown:hover > .dropdown-trigger::after,
.nav-dropdown:focus-within > .dropdown-trigger::after { color: var(--accent); }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: var(--card);
  border: 1px solid var(--rule-strong);
  border-radius: 4px;
  box-shadow: 0 12px 28px rgba(10, 31, 68, .12);
  min-width: 270px;
  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 16px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
}
.nav-dropdown-menu a:hover {
  background: var(--accent-soft);
  color: var(--accent);
}
.nav-dropdown-menu .pick-tag {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--safety);
  padding: 2px 8px;
  border-radius: 2px;
  margin-left: 12px;
}
@media (max-width: 860px) {
  .nav-dropdown { width: 100%; }
.nav-dropdown > .dropdown-trigger {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  /* font-family, font-size, font-weight, text-transform, letter-spacing,
     color all inherit from the sibling nav <a> rule so the trigger matches
     the rest of the nav. */
}
.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-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    border: none;
    box-shadow: none;
    background: transparent;
    padding: 4px 0 0 14px;
    min-width: 0;
    margin-top: 4px;
    border-left: 2px solid var(--rule);
  }
  .nav-dropdown-menu a { padding: 6px 0; font-size: 13px; color: var(--muted); }
  .nav-dropdown-menu a:hover { background: transparent; color: var(--accent); }
  .nav-dropdown-menu .pick-tag { font-size: 9px; padding: 1px 6px; }
}
