/* ═══════════════════════════════════════════════════════════════
   HAVEN PET REPORT — shared stylesheet
   Editorial/magazine feel. One file, every page.
   ═══════════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body { overflow-x: hidden; max-width: 100vw; width: 100%; position: relative; }

body {
  font-family: 'Lora', Georgia, serif;
  line-height: 1.78;
  color: #2c2c2c;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
p, h1, h2, h3, h4, li, td, th { word-break: break-word; overflow-wrap: break-word; }
a { color: #146a72; text-decoration: none; }
a:hover { text-decoration: underline; }

/* ═══════════ SITE HEADER ═══════════ */
.global-header { background: #16232a; width: 100%; }
.header-inner {
  max-width: 1200px; margin: 0 auto; padding: 16px 24px;
  display: flex; justify-content: space-between; align-items: center;
}
.logo {
  font-family: 'Inter', sans-serif; font-size: 21px; font-weight: 800;
  color: #fff; letter-spacing: -0.3px; text-decoration: none;
}
.logo span { color: #4FB6BE; font-weight: 500; }
.logo:hover { text-decoration: none; }
.header-nav { display: flex; align-items: center; gap: 22px; }
.header-nav a {
  font-family: 'Inter', sans-serif; font-size: 13.5px; font-weight: 500;
  color: #b7c2c6;
}
.header-nav a:hover { color: #fff; text-decoration: none; }
@media (max-width: 640px) {
  .header-nav a:not(.header-nav-primary) { display: none; }
}

.header-right { display: flex; align-items: center; gap: 20px; }
.header-search {
  display: flex; align-items: center; gap: 4px;
  color: #b7c2c6; cursor: pointer; font-size: 14px;
  font-family: 'Inter', sans-serif;
}
.header-search svg { vertical-align: middle; }
.header-subscribe {
  font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 600;
  color: #fff; background: #146a72; border: none;
  padding: 8px 18px; border-radius: 4px; cursor: pointer;
}
.header-subscribe:hover { background: #0e4f55; }
@media (max-width: 600px) {
  .header-subscribe { display: none; }
  .header-search span { display: none; }
}

/* ═══════════ BREADCRUMB ═══════════ */
.breadcrumb {
  max-width: 1200px; margin: 0 auto; padding: 16px 24px 0;
  font-family: 'Inter', sans-serif; font-size: 12px; color: #aaa;
}
@media (max-width: 600px) { .breadcrumb { padding: 14px 16px 0; font-size: 11px; } }
.breadcrumb a { color: #888; }
.breadcrumb .crumb { color: #888; }
.breadcrumb .sep { margin: 0 6px; color: #ccc; }

/* ═══════════ MAIN LAYOUT ═══════════ */
.page-wrap {
  max-width: 1200px; margin: 0 auto; padding: 0 24px 60px;
  display: grid; grid-template-columns: 1fr 300px; gap: 48px;
  align-items: start; overflow: hidden;
}
@media (max-width: 900px) {
  .page-wrap { grid-template-columns: 1fr; gap: 0; padding: 0 16px 48px; }
}

.article { max-width: 100%; overflow: hidden; min-width: 0; }

/* Single-column pages (About/Contact/Disclosure/Privacy/filler articles) opt out of the sidebar grid */
.page-wrap.no-sidebar { display: block; max-width: 720px; }

.meta-top {
  font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: #146a72; margin: 26px 0 12px;
}

h1 {
  font-family: 'Inter', sans-serif; font-size: 34px; line-height: 1.18;
  font-weight: 800; color: #16232a; margin-bottom: 14px;
  letter-spacing: -0.5px;
}
@media (max-width: 600px) { h1 { font-size: 25px; line-height: 1.24; } }

.subtitle {
  font-family: 'Lora', serif; font-size: 19px; line-height: 1.55;
  color: #666; font-style: italic; margin-bottom: 20px;
}
@media (max-width: 600px) { .subtitle { font-size: 16.5px; } }

.pub-date {
  font-family: 'Inter', sans-serif; font-size: 13px;
  color: #999; margin-bottom: 20px;
}

/* ── Author block ── */
.author-block {
  display: flex; gap: 24px; padding: 20px 0;
  border-top: 1px solid #eee; border-bottom: 1px solid #eee;
  margin-bottom: 32px; flex-wrap: wrap;
}
.author-item { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0; overflow: hidden;
  background: #e4efee; display: flex; align-items: center; justify-content: center;
  font-family: 'Inter', sans-serif; font-weight: 700; color: #146a72; font-size: 15px;
}
.avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-info { font-family: 'Inter', sans-serif; font-size: 13px; line-height: 1.4; color: #888; }
.author-info strong { color: #333; font-weight: 600; }
.expert-badge {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 11px; font-weight: 600; color: #146a72; margin-top: 2px;
}
.expert-badge svg { width: 13px; height: 13px; fill: #146a72; }

/* ── Editor's note ── */
.editor-note {
  background: #fff8e6; border-left: 4px solid #c08a2e;
  padding: 14px 20px; margin: 0 0 28px; border-radius: 4px;
  font-family: 'Inter', sans-serif; font-size: 14.5px; line-height: 1.55;
  color: #5a4300;
}
.editor-note strong { color: #3d2e00; }
.editor-note a { color: #8a6d20; font-weight: 700; white-space: nowrap; }
@media (max-width: 600px) { .editor-note { font-size: 13.5px; padding: 12px 16px; } }

/* ── Hero / placeholder image blocks ── */
.hero-img {
  width: 100%; border-radius: 10px; margin-bottom: 28px;
  aspect-ratio: 16/9; object-fit: cover; display: block;
}
.placeholder-img {
  width: 100%; border-radius: 10px; margin-bottom: 28px;
  aspect-ratio: 16/9; object-fit: cover;
  background: linear-gradient(135deg, #e4efee 0%, #cfe4e2 100%);
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 20px;
  font-family: 'Inter', sans-serif; font-size: 13px; color: #5a8285;
  border: 1px dashed #a9c7c5;
}

/* ── Body text ── */
.article p { font-size: 18px; margin-bottom: 22px; color: #2c2c2c; }
@media (max-width: 600px) { .article p { font-size: 16.5px; } }

.article h2 {
  font-family: 'Inter', sans-serif; font-size: 25px; font-weight: 700;
  color: #16232a; margin: 44px 0 18px; letter-spacing: -0.3px;
}
@media (max-width: 600px) { .article h2 { font-size: 21px; } }

.article h3.section-sub {
  font-family: 'Inter', sans-serif; font-size: 18px; font-weight: 700;
  color: #16232a; margin: 28px 0 12px;
}

/* ── Key Takeaways ── */
.key-takeaways { background: #eef6f6; border-radius: 8px; padding: 24px 28px; margin-bottom: 32px; }
.key-takeaways h3 {
  font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px; color: #146a72; margin-bottom: 12px;
}
.key-takeaways ul { list-style: none; padding: 0; }
.key-takeaways li {
  font-family: 'Inter', sans-serif; font-size: 14.5px; line-height: 1.6;
  color: #444; padding: 6px 0 6px 20px; position: relative;
}
.key-takeaways li::before {
  content: ''; position: absolute; left: 0; top: 13px;
  width: 7px; height: 7px; background: #146a72; border-radius: 50%;
}

/* ═══════════ WHAT TO LOOK FOR / AVOID ═══════════ */
.criteria-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 32px 0; }
@media (max-width: 640px) { .criteria-grid { grid-template-columns: 1fr; } }
.criteria-box { padding: 24px 26px; border-radius: 10px; font-family: 'Inter', sans-serif; }
.criteria-box.look-for { background: #ecf7f0; border: 1px solid #c6e5d1; }
.criteria-box.avoid    { background: #fdf1f1; border: 1px solid #f4caca; }
.criteria-box h4 {
  font-size: 13px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; margin-bottom: 14px;
}
.criteria-box.look-for h4 { color: #1f7a3e; }
.criteria-box.avoid h4    { color: #b4231e; }
.criteria-box ul { list-style: none; padding: 0; }
.criteria-box li { font-size: 14.5px; line-height: 1.6; color: #333; padding: 6px 0 6px 28px; position: relative; }
.criteria-box.look-for li::before { content: '\2713'; position: absolute; left: 4px; top: 5px; color: #1f7a3e; font-weight: 700; font-size: 16px; }
.criteria-box.avoid li::before    { content: '\2715'; position: absolute; left: 4px; top: 5px; color: #b4231e; font-weight: 700; font-size: 16px; }

/* ═══════════ PRODUCT SCORECARD ═══════════ */
.product-card {
  background: #fff; border: 1px solid #e0deda;
  border-radius: 12px; margin: 36px 0; overflow: hidden; position: relative;
}
.product-card.editors-pick { border: 2px solid #146a72; box-shadow: 0 4px 20px rgba(20,106,114,0.1); }
.product-card.avoid-card { border: 1px solid #f0d0d0; }
.product-card.avoid-card .card-top { background: #fdf7f7; }

.rank-badge {
  position: absolute; top: 18px; left: 18px;
  width: 40px; height: 40px; border-radius: 50%;
  background: #146a72; color: #fff;
  font-family: 'Inter', sans-serif; font-size: 17px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  z-index: 2; letter-spacing: -0.5px; box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.rank-badge.rank-1 { background: #c08a2e; }
.rank-badge.rank-5 { background: #9a9a9a; }

.card-top {
  padding: 20px 28px 18px 76px; background: #fafaf8; border-bottom: 1px solid #f0eeeb;
  display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap;
}
@media (max-width: 600px) { .card-top { padding: 20px 20px 18px 72px; } }
.card-top-left h3 { font-family: 'Inter', sans-serif; font-size: 21px; font-weight: 700; color: #16232a; margin-bottom: 2px; letter-spacing: -0.3px; }
@media (max-width: 600px) { .card-top-left h3 { font-size: 18.5px; } }
.card-top-left .sub { font-family: 'Inter', sans-serif; font-size: 13px; color: #888; font-weight: 500; }
.editors-choice-badge {
  display: inline-block; font-family: 'Inter', sans-serif; font-size: 10.5px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.5px; color: #fff; background: #146a72;
  padding: 4px 10px; border-radius: 4px; margin-bottom: 6px;
}
.avoid-badge {
  display: inline-block; font-family: 'Inter', sans-serif; font-size: 10.5px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.5px; color: #fff; background: #b4231e;
  padding: 4px 10px; border-radius: 4px; margin-bottom: 6px;
}

.grade-wrap { text-align: center; min-width: 70px; font-family: 'Inter', sans-serif; }
.grade-letter { font-size: 36px; font-weight: 800; line-height: 1; color: #1a1a1a; letter-spacing: -2px; }
.grade-letter.grade-a { color: #1f7a3e; }
.grade-letter.grade-b { color: #6b8f1f; }
.grade-letter.grade-c { color: #c08a2e; }
.grade-letter.grade-d { color: #cc5b1e; }
.grade-letter.grade-f { color: #b4231e; }
.grade-label { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.2px; color: #888; margin-top: 2px; }

.card-body { display: grid; grid-template-columns: 150px 1fr 200px; gap: 26px; padding: 24px 28px; align-items: start; }
@media (max-width: 780px) { .card-body { grid-template-columns: 1fr; gap: 20px; padding: 22px 20px; } }

.product-img-wrap {
  background: #fafaf8; border-radius: 10px; padding: 10px;
  aspect-ratio: 1/1; display: flex; align-items: center; justify-content: center;
  border: 1px dashed #d8d5cf; text-align: center;
}
.product-img-wrap span {
  font-family: 'Inter', sans-serif; font-size: 11px; color: #999; line-height: 1.4;
}
.product-img-wrap.has-image { border-style: solid; border-color: #e0deda; }
.product-img { max-width: 100%; max-height: 100%; object-fit: contain; }
@media (max-width: 780px) { .product-img-wrap { max-width: 180px; margin: 0 auto; } }

.score-section { min-width: 0; }
.score-overall { font-family: 'Inter', sans-serif; display: flex; align-items: baseline; gap: 8px; margin-bottom: 4px; }
.score-num { font-size: 30px; font-weight: 800; color: #16232a; line-height: 1; }
.score-denom { font-size: 15px; color: #888; font-weight: 500; }
.score-caption { font-family: 'Inter', sans-serif; font-size: 12px; color: #888; margin-bottom: 14px; letter-spacing: 0.3px; }
.gauge { width: 100%; height: 8px; background: #f0eeeb; border-radius: 10px; overflow: hidden; margin-bottom: 18px; }
.gauge-fill { height: 100%; border-radius: 10px; background: linear-gradient(90deg, #4FB6BE 0%, #146a72 100%); }
.gauge-fill.mid { background: linear-gradient(90deg, #e0c088 0%, #c08a2e 100%); }
.gauge-fill.low { background: linear-gradient(90deg, #e09999 0%, #b4231e 100%); }

.metrics { font-family: 'Inter', sans-serif; font-size: 13px; }
.metric-row { display: grid; grid-template-columns: 1fr 56px 36px; align-items: center; gap: 10px; padding: 5px 0; }
.metric-label { color: #555; }
.metric-bar { height: 5px; background: #f0eeeb; border-radius: 10px; overflow: hidden; }
.metric-fill { height: 100%; background: #146a72; border-radius: 10px; }
.metric-fill.mid { background: #c08a2e; }
.metric-fill.low { background: #b4231e; }
.metric-val { text-align: right; font-weight: 600; color: #333; }

.card-cta { text-align: center; font-family: 'Inter', sans-serif; }
.card-price { font-size: 14px; color: #555; margin-bottom: 10px; }
.card-price strong { color: #16232a; font-size: 18px; }
.card-cta-btn {
  display: block; width: 100%; font-family: 'Inter', sans-serif;
  font-size: 15px; font-weight: 700; color: #fff;
  background: #146a72; padding: 14px 18px; border-radius: 8px;
  text-decoration: none; transition: background 0.15s; white-space: nowrap;
}
.card-cta-btn:hover { background: #0e4f55; text-decoration: none; }
.card-cta-btn::after { content: ' \2192'; }
.card-cta-btn.gold { background: #c08a2e; }
.card-cta-btn.gold:hover { background: #a3721f; }
.card-cta-btn.neutral { background: #fff; color: #333; border: 1.5px solid #d0d0d0; }
.card-cta-btn.neutral:hover { background: #fafafa; border-color: #888; color: #000; }
.card-cta-btn.disabled { background: #f5f5f5; color: #888; border: 1.5px solid #e0e0e0; pointer-events: none; }
.card-cta-btn.disabled::after { content: ''; }
.card-cta-sub { font-size: 11.5px; color: #999; margin-top: 8px; line-height: 1.4; }

/* Pros / Cons */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; padding: 0 28px 24px; font-family: 'Inter', sans-serif; }
@media (max-width: 600px) { .pros-cons { grid-template-columns: 1fr; padding: 0 20px 20px; } }
.pros-cons h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.pros h4 { color: #1f7a3e; }
.cons h4 { color: #b4231e; }
.pros ul, .cons ul { list-style: none; padding: 0; }
.pros li, .cons li { font-size: 14px; line-height: 1.55; color: #444; padding: 5px 0 5px 24px; position: relative; }
.pros li::before { content: '\2713'; position: absolute; left: 0; top: 4px; color: #1f7a3e; font-weight: 700; font-size: 15px; }
.cons li::before { content: '\2715'; position: absolute; left: 0; top: 4px; color: #b4231e; font-weight: 700; font-size: 15px; }

/* Bottom Line (per-card) */
.bottom-line { padding: 18px 28px 26px; border-top: 1px solid #f0eeeb; background: #fafaf8; font-family: 'Inter', sans-serif; }
@media (max-width: 600px) { .bottom-line { padding: 18px 20px 22px; } }
.bottom-line h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #146a72; margin-bottom: 6px; }
.bottom-line.low h4 { color: #b4231e; }
.bottom-line p { font-size: 15px; line-height: 1.65; color: #444; margin: 0; }

/* Trust block (on #1 card) */
.trust-block {
  background: linear-gradient(135deg, #146a72 0%, #0e4f55 100%);
  color: #fff; padding: 22px 28px; display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 18px; align-items: center; font-family: 'Inter', sans-serif;
}
@media (max-width: 600px) { .trust-block { grid-template-columns: 1fr; padding: 20px; gap: 14px; } }
.trust-item { display: flex; align-items: center; gap: 12px; font-size: 13.5px; font-weight: 600; line-height: 1.3; }
.trust-icon { flex-shrink: 0; width: 34px; height: 34px; background: rgba(255,255,255,0.16); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.trust-icon svg { width: 18px; height: 18px; fill: #fff; }

/* ── Comparison table ── */
.compare-wrap { overflow-x: auto; margin: 32px 0; }
.compare-table { width: 100%; border-collapse: collapse; font-family: 'Inter', sans-serif; font-size: 13.5px; min-width: 720px; }
.compare-table th { text-align: left; font-weight: 600; font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: #888; padding: 10px 14px; border-bottom: 2px solid #ddd; }
.compare-table td { padding: 14px; border-bottom: 1px solid #f0eeeb; color: #444; }
.compare-table .pn { font-weight: 600; color: #16232a; }
.compare-table tr.winner { background: #eef6f6; }
.compare-table tr.winner .pn { color: #146a72; }
.compare-table tr.loser td { color: #888; }
.compare-table .grade-mini { display: inline-block; font-weight: 800; font-size: 14px; }
.compare-table .grade-mini.a { color: #1f7a3e; }
.compare-table .grade-mini.c { color: #c08a2e; }
.compare-table .grade-mini.d { color: #b4231e; }

/* ── Methodology ── */
.methodology { background: #fafaf8; border: 1px solid #e8e6e3; border-radius: 8px; padding: 26px 28px; margin: 44px 0 32px; }
.methodology h2 { font-size: 18px; margin: 0 0 12px; }
.methodology p { font-size: 14.5px; color: #555; margin-bottom: 0; line-height: 1.7; }

/* ── Blockquote ── */
blockquote { border-left: 3px solid #146a72; margin: 32px 0; padding: 4px 0 4px 24px; font-style: italic; color: #555; }
blockquote p { font-size: 17px; margin-bottom: 8px; }
blockquote cite { font-family: 'Inter', sans-serif; font-size: 13px; font-style: normal; color: #888; }

/* ── Author bios (bottom) ── */
.author-bios { border-top: 2px solid #16232a; padding-top: 32px; margin-top: 48px; }
.bio-card { display: flex; gap: 20px; margin-bottom: 28px; }
.bio-avatar {
  width: 60px; height: 60px; border-radius: 50%; flex-shrink: 0; overflow: hidden;
  background: #e4efee; display: flex; align-items: center; justify-content: center;
  font-family: 'Inter', sans-serif; font-weight: 700; color: #146a72; font-size: 18px;
}
.bio-avatar img { width: 100%; height: 100%; object-fit: cover; }
.bio-text { font-family: 'Inter', sans-serif; font-size: 14px; line-height: 1.65; color: #555; }
.bio-text strong { color: #16232a; font-size: 15px; }
.bio-text .bio-title { color: #888; font-size: 13px; display: block; margin-bottom: 6px; }

/* ── Related articles ── */
.related { margin-top: 48px; padding-top: 32px; border-top: 1px solid #e8e6e3; }
.related h2 { font-size: 20px; margin-bottom: 20px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 700px) { .related-grid { grid-template-columns: 1fr; } }
.related-card { border: 1px solid #e8e6e3; border-radius: 8px; overflow: hidden; transition: box-shadow 0.15s; text-decoration: none; display: block; }
.related-card:hover { box-shadow: 0 2px 8px rgba(0,0,0,0.08); text-decoration: none; }
.related-img {
  height: 130px; background: linear-gradient(135deg, #e4efee 0%, #cfe4e2 100%);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
  font-family: 'Inter', sans-serif; font-size: 11px; color: #6a9a9c; text-align: center; padding: 10px;
}
.related-img img { width: 100%; height: 100%; object-fit: cover; padding: 0; }
.related-body { padding: 14px 16px; }
.related-cat { font-family: 'Inter', sans-serif; font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: #146a72; margin-bottom: 6px; }
.related-title { font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 600; color: #16232a; line-height: 1.35; }

/* ── Footer disclosure block (in-article) ── */
.footer-disclosure { font-family: 'Inter', sans-serif; font-size: 12px; color: #aaa; margin-top: 48px; padding-top: 20px; border-top: 1px solid #e8e6e3; line-height: 1.7; }

/* ═══════════ SITE FOOTER ═══════════ */
.site-footer { background: #16232a; margin-top: 60px; padding: 40px 24px; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-logo { font-family: 'Inter', sans-serif; font-size: 17px; font-weight: 800; color: #fff; }
.footer-logo span { color: #4FB6BE; font-weight: 500; }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; font-family: 'Inter', sans-serif; font-size: 13px; }
.footer-links a { color: #9ca9ae; }
.footer-links a:hover { color: #fff; }
.footer-copy { width: 100%; font-family: 'Inter', sans-serif; font-size: 12px; color: #6b7679; margin-top: 16px; }

/* ═══════════ SIDEBAR ═══════════ */
.sidebar { padding-top: 140px; position: sticky; top: 20px; align-self: start; }
@media (max-width: 900px) { .sidebar { display: none; } }

.sidebar-box { border: 1px solid #e8e6e3; border-radius: 8px; padding: 24px; margin-bottom: 24px; background: #fff; }
.sidebar-box h4 { font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 700; color: #16232a; margin-bottom: 14px; }
.sidebar-box p { font-family: 'Inter', sans-serif; font-size: 13px; color: #666; line-height: 1.55; margin-bottom: 14px; }
.sidebar-input { width: 100%; padding: 10px 12px; border: 1px solid #ddd; border-radius: 6px; font-family: 'Inter', sans-serif; font-size: 13px; margin-bottom: 10px; }
.sidebar-btn { width: 100%; padding: 10px; background: #146a72; color: #fff; border: none; border-radius: 6px; font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 600; cursor: pointer; }
.sidebar-btn:hover { background: #0e4f55; }
.popular-list { list-style: none; padding: 0; }
.popular-list li { padding: 10px 0; border-bottom: 1px solid #f0eeeb; }
.popular-list li:last-child { border-bottom: none; }
.popular-list a { font-family: 'Inter', sans-serif; font-size: 13.5px; font-weight: 500; color: #333; line-height: 1.4; }
.popular-list .pop-cat { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.8px; color: #146a72; display: block; margin-bottom: 2px; }

/* ═══════════ GENERIC PAGE (About / Contact / Disclosure / Privacy) ═══════════ */
.static-page h1 { margin-top: 30px; }
.static-page .subtitle { margin-bottom: 32px; }
.static-page h2 { font-family: 'Inter', sans-serif; font-size: 21px; font-weight: 700; color: #16232a; margin: 36px 0 14px; }
.static-page p { font-size: 17px; margin-bottom: 20px; color: #2c2c2c; }
.static-page ul { margin: 0 0 20px 22px; }
.static-page li { font-size: 17px; margin-bottom: 8px; }

/* ── Contact form ── */
.contact-form { font-family: 'Inter', sans-serif; margin-top: 24px; }
.contact-form label { display: block; font-size: 13px; font-weight: 600; color: #333; margin-bottom: 6px; }
.contact-form input, .contact-form textarea {
  width: 100%; padding: 12px 14px; border: 1px solid #ddd; border-radius: 6px;
  font-family: 'Inter', sans-serif; font-size: 14px; margin-bottom: 18px;
}
.contact-form textarea { min-height: 130px; resize: vertical; }
.contact-form button {
  background: #146a72; color: #fff; border: none; padding: 13px 28px;
  border-radius: 8px; font-family: 'Inter', sans-serif; font-size: 14.5px; font-weight: 700; cursor: pointer;
}
.contact-form button:hover { background: #0e4f55; }

/* ═══════════ HOMEPAGE ═══════════ */
.home-hero {
  background: linear-gradient(135deg, #16232a 0%, #1f363f 100%); color: #fff;
  padding: 56px 24px 48px; text-align: center;
}
.home-hero .kicker {
  font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px; color: #4FB6BE; margin-bottom: 14px;
}
.home-hero h1 {
  color: #fff; max-width: 640px; margin: 0 auto 16px; font-size: 36px;
}
@media (max-width: 600px) { .home-hero h1 { font-size: 26px; } }
.home-hero p { font-family: 'Lora', serif; font-style: italic; color: #c9d4d6; max-width: 520px; margin: 0 auto; font-size: 17px; }

.home-wrap { max-width: 1000px; margin: 0 auto; padding: 48px 24px 60px; }
.home-section-label {
  font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px; color: #146a72; margin-bottom: 18px;
}
.home-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 800px) { .home-grid { grid-template-columns: 1fr; } }

.feature-card {
  border: 1px solid #e8e6e3; border-radius: 10px; overflow: hidden;
  display: flex; flex-direction: column; text-decoration: none;
  transition: box-shadow 0.15s;
}
.feature-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); text-decoration: none; }
.feature-card.featured { grid-column: span 3; flex-direction: row; }
@media (max-width: 800px) { .feature-card.featured { flex-direction: column; grid-column: span 1; } }
.feature-card .fc-img {
  background: linear-gradient(135deg, #e4efee 0%, #cfe4e2 100%);
  height: 160px; display: flex; align-items: center; justify-content: center;
  font-family: 'Inter', sans-serif; font-size: 11px; color: #6a9a9c; text-align: center; padding: 10px;
}
.feature-card.featured .fc-img { flex: 0 0 42%; height: auto; }
.fc-body { padding: 20px 22px; flex: 1; }
.fc-cat { font-family: 'Inter', sans-serif; font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #146a72; margin-bottom: 8px; }
.fc-title { font-family: 'Inter', sans-serif; font-size: 17px; font-weight: 700; color: #16232a; line-height: 1.3; margin-bottom: 8px; }
.feature-card.featured .fc-title { font-size: 24px; }
.fc-dek { font-family: 'Lora', serif; font-size: 14.5px; color: #666; line-height: 1.5; }

.home-cta-strip {
  background: #eef6f6; border-radius: 10px; padding: 32px 28px; margin: 48px 0;
  text-align: center;
}
.home-cta-strip h3 { font-family: 'Inter', sans-serif; font-size: 20px; color: #16232a; margin-bottom: 10px; }
.home-cta-strip p { font-family: 'Lora', serif; color: #555; margin-bottom: 18px; }
.home-cta-strip a.card-cta-btn { display: inline-block; width: auto; padding: 14px 30px; }

/* ═══════════ SOCIAL PROOF ═══════════ */
.proof-section { margin: 40px 0; padding: 32px 0; border-top: 1px solid #e8e6e3; border-bottom: 1px solid #e8e6e3; }
.proof-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 24px; flex-wrap: wrap; gap: 12px; }
.proof-header h2 { font-family: 'Inter', sans-serif; font-size: 22px; font-weight: 700; color: #16232a; margin: 0; letter-spacing: -0.2px; }
.proof-rating { font-family: 'Inter', sans-serif; font-size: 13.5px; color: #666; }
.proof-rating .stars-row { color: #f5a623; font-size: 17px; letter-spacing: 2px; margin-right: 6px; }
.proof-rating strong { color: #16232a; font-weight: 700; }
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 900px) { .proof-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .proof-grid { grid-template-columns: 1fr; } }
.proof-card { background: #fafaf8; border: 1px solid #e8e6e3; border-radius: 10px; padding: 20px 22px; font-family: 'Inter', sans-serif; display: flex; flex-direction: column; }
.proof-card .stars { color: #f5a623; font-size: 14px; letter-spacing: 1.5px; margin-bottom: 8px; }
.proof-card .quote-title { font-size: 14.5px; font-weight: 700; color: #16232a; line-height: 1.35; margin-bottom: 8px; }
.proof-card .quote-body { font-size: 13.5px; line-height: 1.6; color: #555; flex-grow: 1; margin-bottom: 14px; }
.proof-card .quote-attr { font-size: 12px; color: #888; line-height: 1.4; padding-top: 12px; border-top: 1px solid #eee; }
.proof-card .quote-attr strong { color: #333; font-weight: 600; }
.proof-card .placeholder-tag {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
  color: #a3721f; margin-top: 4px;
}
.proof-footnote { margin-top: 18px; font-family: 'Inter', sans-serif; font-size: 11.5px; color: #999; line-height: 1.5; text-align: center; }

/* ═══════════ FAQ ACCORDION ═══════════ */
.faq-list { margin: 24px 0 40px; }
.faq-item { border-bottom: 1px solid #e8e6e3; }
.faq-item:first-child { border-top: 1px solid #e8e6e3; }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 18px 4px; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 600; color: #16232a;
}
.faq-q::after { content: '+'; font-size: 22px; color: #146a72; font-weight: 400; flex-shrink: 0; transition: transform 0.15s; }
.faq-q[aria-expanded="true"]::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.2s ease;
  font-size: 15.5px; color: #555; line-height: 1.65;
}
.faq-a.is-open { max-height: 400px; padding-bottom: 18px; }
.faq-a p { font-size: inherit; margin: 0; }
