/* Clearpath Wellness — Variant A Clean Minimal */
/* Google Fonts via link tag */

:root {
  --bg: #ffffff;
  --bg2: #f5f7fa;
  --text: #1a1a2e;
  --muted: #5a6070;
  --accent: #4a90e2;
  --accent-dark: #2e6fc4;
  --border: #dde3ee;
  --gold: #d4a017;
  --green: #2ecc71;
  --red: #e74c3c;
  --radius: 6px;
  --max: 780px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--text); font-family: 'Merriweather', Georgia, serif; font-size: 17px; line-height: 1.75; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-dark); }
img { max-width: 100%; height: auto; display: block; }
h1,h2,h3,h4 { font-family: 'Lato', Arial, sans-serif; line-height: 1.2; margin: 0; color: var(--text); }
p { margin: 0 0 1.2rem; }
ul,ol { margin: 0 0 1.2rem; padding-left: 1.5rem; }
li { margin-bottom: 0.4rem; }

/* ── Top bar ── */
.topbar {
  background: var(--text);
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  letter-spacing: 0.4px;
}
.topbar-inner {
  max-width: 1060px; margin: 0 auto; padding: 7px 24px;
  display: flex; justify-content: space-between; align-items: center;
}
.topbar-inner span { color: rgba(255,255,255,0.6); }
.topbar-links { display: flex; gap: 16px; }
.topbar-links a { color: rgba(255,255,255,0.65); font-weight: 500; }
.topbar-links a:hover { color: #fff; }

/* ── Header ── */
.site-header {
  background: var(--bg);
  border-bottom: 3px solid var(--accent);
  position: sticky; top: 0; z-index: 100;
}
.header-inner {
  max-width: 1060px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.site-logo {
  font-family: 'Lato', sans-serif; font-size: 22px; font-weight: 900;
  color: var(--text); letter-spacing: -0.5px;
}
.site-logo span { color: var(--accent); }
.site-nav { display: flex; gap: 4px; list-style: none; margin: 0; padding: 0; }
.site-nav a {
  font-family: 'Lato', sans-serif; font-size: 14px; font-weight: 700;
  color: var(--text); padding: 6px 13px; border-radius: var(--radius);
  transition: background 0.15s;
}
.site-nav a:hover { background: var(--bg2); color: var(--accent); }
.nav-toggle { display: none; background: none; border: none; font-size: 22px; cursor: pointer; color: var(--text); padding: 4px; }

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #2a2a4e 100%);
  padding: 64px 24px;
}
.hero-inner { max-width: 1060px; margin: 0 auto; display: grid; grid-template-columns: 1fr 420px; gap: 48px; align-items: center; }
.hero-label {
  display: inline-block; background: var(--accent); color: #fff;
  font-family: 'Lato', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 1.2px; text-transform: uppercase; padding: 4px 10px;
  border-radius: 3px; margin-bottom: 16px;
}
.hero-title { font-size: 38px; font-weight: 900; color: #fff; margin-bottom: 14px; line-height: 1.1; }
.hero-excerpt { font-family: 'Lato', sans-serif; font-size: 17px; color: rgba(255,255,255,0.75); margin-bottom: 22px; line-height: 1.6; }
.hero-btn {
  display: inline-block; background: var(--accent); color: #fff;
  font-family: 'Lato', sans-serif; font-size: 15px; font-weight: 700;
  padding: 12px 24px; border-radius: var(--radius); transition: background 0.15s;
}
.hero-btn:hover { background: var(--accent-dark); color: #fff; }
.hero-img { border-radius: 10px; overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,0.4); }
.hero-img img { width: 100%; height: 280px; object-fit: cover; }

/* ── Article grid ── */
.articles-section { max-width: 1060px; margin: 0 auto; padding: 56px 24px; }
.section-head { display: flex; align-items: center; gap: 16px; margin-bottom: 32px; }
.section-title { font-family: 'Lato', sans-serif; font-size: 20px; font-weight: 900; }
.section-rule { flex: 1; height: 1px; background: var(--border); }
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.a-card { background: var(--bg2); border-radius: 10px; overflow: hidden; border: 1px solid var(--border); transition: box-shadow 0.2s; }
.a-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.08); }
.a-card-img { height: 190px; overflow: hidden; }
.a-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.a-card:hover .a-card-img img { transform: scale(1.04); }
.a-card-body { padding: 18px 20px 20px; }
.a-card-cat { font-family: 'Lato', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }
.a-card-title { font-family: 'Lato', sans-serif; font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 10px; line-height: 1.3; }
.a-card-blurb { font-size: 14px; color: var(--muted); line-height: 1.6; margin-bottom: 14px; font-family: 'Lato', sans-serif; }
.a-card-link { font-family: 'Lato', sans-serif; font-size: 13px; font-weight: 700; color: var(--accent); }
.a-card-link::after { content: " →"; }

/* ── Article page layout ── */
.article-wrap { max-width: var(--max); margin: 0 auto; padding: 48px 24px 80px; }
.art-cat { display: inline-block; background: #eef4fb; color: var(--accent); font-family: 'Lato', sans-serif; font-size: 11.5px; font-weight: 700; letter-spacing: 0.9px; text-transform: uppercase; padding: 4px 10px; border-radius: 3px; margin-bottom: 16px; }
.art-h1 { font-size: 38px; font-weight: 900; margin-bottom: 14px; line-height: 1.1; }
.art-meta { font-family: 'Lato', sans-serif; font-size: 14px; color: var(--muted); display: flex; flex-wrap: wrap; gap: 14px; padding-bottom: 18px; border-bottom: 1px solid var(--border); margin-bottom: 24px; }
.art-meta strong { color: var(--text); }
.art-hero-img { width: 100%; border-radius: 8px; margin-bottom: 28px; max-height: 400px; object-fit: cover; }

/* Disclosure */
.disclosure-box {
  background: #fffbf0; border: 1px solid #e8d89a; border-left: 4px solid var(--gold);
  border-radius: var(--radius); padding: 13px 17px;
  font-family: 'Lato', sans-serif; font-size: 13px; color: #5a4810;
  margin-bottom: 28px; line-height: 1.5;
}

/* Body text */
.body-text { font-size: 18px; line-height: 1.8; }
.body-text h2 { font-size: 26px; font-weight: 900; margin: 36px 0 14px; }
.body-text h3 { font-size: 21px; font-weight: 700; margin: 28px 0 12px; }
.body-text ul, .body-text ol { margin-bottom: 1.2rem; }
.body-text a { color: var(--accent); text-decoration: underline; }
.body-text img { border-radius: 8px; margin: 24px 0; width: 100%; }

/* Rating block */
.rating-block { background: var(--bg2); border: 1px solid var(--border); border-radius: 10px; padding: 22px 24px; margin: 28px 0; }
.rating-title { font-family: 'Lato', sans-serif; font-size: 15px; font-weight: 700; margin-bottom: 14px; border-bottom: 1px solid var(--border); padding-bottom: 10px; }
.rating-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid #eee; font-family: 'Lato', sans-serif; font-size: 15px; }
.rating-row:last-child { border-bottom: none; }
.rating-label { color: var(--muted); }
.stars { color: var(--gold); letter-spacing: 1px; }
.overall-box { background: #eef4fb; border-radius: 8px; padding: 16px; text-align: center; margin-top: 14px; }
.overall-num { font-family: 'Lato', sans-serif; font-size: 48px; font-weight: 900; color: var(--accent); line-height: 1; }
.overall-label { font-family: 'Lato', sans-serif; font-size: 13px; color: var(--muted); margin-top: 4px; }

/* Pros/cons */
.split-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 28px 0; }
.pros-box, .cons-box { border-radius: 8px; padding: 18px 20px; }
.pros-box { background: #f0faf5; border: 1px solid #b6dfc8; }
.cons-box { background: #fdf3f3; border: 1px solid #e8b8b8; }
.box-head { font-family: 'Lato', sans-serif; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 12px; }
.pros-box .box-head { color: #1a8a4a; }
.cons-box .box-head { color: var(--red); }
.pros-box ul, .cons-box ul { list-style: none; padding: 0; margin: 0; }
.pros-box li, .cons-box li { font-family: 'Lato', sans-serif; font-size: 14.5px; padding: 5px 0; border-bottom: 1px solid rgba(0,0,0,0.05); display: flex; gap: 8px; align-items: flex-start; }
.pros-box li::before { content: "✓"; color: #1a8a4a; font-weight: 700; flex-shrink: 0; }
.cons-box li::before { content: "✕"; color: var(--red); font-weight: 700; flex-shrink: 0; }
.pros-box li:last-child, .cons-box li:last-child { border-bottom: none; }

/* Pull quote */
.pullquote { border-left: 4px solid var(--accent); padding: 12px 22px; margin: 28px 0; font-style: italic; font-size: 20px; color: var(--text); line-height: 1.5; background: var(--bg2); border-radius: 0 6px 6px 0; }

/* User reviews */
.review-stack { display: flex; flex-direction: column; gap: 16px; margin: 28px 0; }
.review-card { background: var(--bg2); border: 1px solid var(--border); border-radius: 8px; padding: 18px 20px; }
.review-stars { color: var(--gold); font-size: 15px; margin-bottom: 6px; }
.review-text { font-size: 16px; font-style: italic; color: var(--text); margin-bottom: 10px; }
.review-name { font-family: 'Lato', sans-serif; font-size: 14px; font-weight: 700; color: var(--text); }
.review-badge { font-family: 'Lato', sans-serif; font-size: 12px; color: var(--muted); }

/* CTA block */
.cta-block { background: var(--text); color: #fff; border-radius: 10px; padding: 28px 24px; text-align: center; margin: 32px 0; }
.cta-head { font-family: 'Lato', sans-serif; font-size: 22px; font-weight: 900; margin-bottom: 10px; color: #fff; line-height: 1.2; }
.cta-sub { font-family: 'Lato', sans-serif; font-size: 14px; color: rgba(255,255,255,0.7); margin-bottom: 20px; }
.cta-btn {
  display: inline-block; background: var(--accent); color: #fff;
  font-family: 'Lato', sans-serif; font-size: 16px; font-weight: 700;
  padding: 14px 28px; border-radius: var(--radius);
  box-shadow: 0 4px 16px rgba(74,144,226,0.4); transition: background 0.15s;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.cta-btn:hover { background: var(--accent-dark); color: #fff; }
.cta-fine { font-family: 'Lato', sans-serif; font-size: 11.5px; color: rgba(255,255,255,0.45); margin-top: 10px; }

/* Newsletter */
.nl-band { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 40px 24px; text-align: center; }
.nl-band h3 { font-size: 22px; font-weight: 900; margin-bottom: 8px; }
.nl-band p { font-family: 'Lato', sans-serif; font-size: 15px; color: var(--muted); margin-bottom: 20px; }
.nl-form { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.nl-form input { font-family: 'Lato', sans-serif; font-size: 14px; padding: 11px 16px; border: 1px solid var(--border); border-radius: var(--radius); width: 280px; }
.nl-form button { background: var(--accent); color: #fff; font-family: 'Lato', sans-serif; font-size: 14px; font-weight: 700; padding: 11px 22px; border: none; border-radius: var(--radius); cursor: pointer; }

/* Static pages */
.static-wrap { max-width: var(--max); margin: 0 auto; padding: 48px 24px 80px; }
.static-wrap h1 { font-size: 34px; font-weight: 900; margin-bottom: 8px; }
.static-date { font-family: 'Lato', sans-serif; font-size: 14px; color: var(--muted); display: block; margin-bottom: 32px; }
.static-wrap h2 { font-size: 20px; margin: 28px 0 10px; }
.static-wrap p, .static-wrap li { font-size: 16px; line-height: 1.75; }

/* Footer */
.site-footer { background: var(--text); color: rgba(255,255,255,0.6); padding: 48px 24px 0; margin-top: 60px; }
.footer-inner { max-width: 1060px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr; gap: 48px; }
.footer-brand .site-logo { color: rgba(255,255,255,0.9); margin-bottom: 12px; display: block; }
.footer-brand p { font-family: 'Lato', sans-serif; font-size: 14px; line-height: 1.6; margin: 0; }
.footer-links h4 { font-family: 'Lato', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.9); margin-bottom: 14px; }
.footer-links ul { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { font-family: 'Lato', sans-serif; font-size: 14px; color: rgba(255,255,255,0.55); transition: color 0.15s; }
.footer-links a:hover { color: #fff; }
.footer-base { max-width: 1060px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; margin-top: 36px; display: flex; justify-content: space-between; font-family: 'Lato', sans-serif; font-size: 12px; flex-wrap: wrap; gap: 8px; }

/* Responsive */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-img { order: -1; }
  .hero-img img { height: 220px; }
  .article-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .topbar-inner { flex-direction: column; gap: 4px; text-align: center; }
  .site-nav { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: var(--bg); padding: 12px 16px; border-bottom: 3px solid var(--accent); box-shadow: 0 8px 20px rgba(0,0,0,0.1); }
  .site-nav.open { display: flex; }
  .nav-toggle { display: block; }
  .header-inner { position: relative; }
  .article-grid { grid-template-columns: 1fr; }
  .art-h1 { font-size: 28px; }
  .hero-title { font-size: 27px; }
  .split-row { grid-template-columns: 1fr; }
  .footer-base { flex-direction: column; align-items: center; text-align: center; }
}
