/* Klyndo — DM Sans + Lora, Forest Green, Variant G */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Lora:ital,wght@0,400;0,600;1,400&display=swap');

:root {
  --bg:          #f8faf9;
  --white:       #ffffff;
  --text:        #1d2326;
  --muted:       #5a6a6e;
  --heading:     #111a1d;
  --green:       #0f6b4c;
  --green-dark:  #0a5038;
  --green-light: #e7f5ef;
  --border:      #cfe0d8;
  --gold:        #d4a027;
  --soft-red:    #c0392b;
  --radius:      6px;
}

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

/* ── Top strip ─────────────────────────────────────── */
.strip-nav {
  background: var(--heading);
  color: rgba(255,255,255,.7);
  font-family: 'DM Sans', sans-serif;
  font-size: 12.5px;
  font-weight: 500;
}
.strip-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 8px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.strip-inner a { color: rgba(255,255,255,.75); }
.strip-inner a:hover { color: #fff; }
.strip-tagline { letter-spacing: .3px; }
.strip-links { display: flex; gap: 16px; }

/* ── Header ─────────────────────────────────────────── */
.site-head {
  background: var(--white);
  border-bottom: 2px solid var(--green);
  position: sticky;
  top: 0;
  z-index: 100;
}
.head-wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
  gap: 20px;
}
.brand-mark {
  font-family: 'DM Sans', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: -0.5px;
  flex-shrink: 0;
}
.brand-mark span { color: var(--heading); }
.primary-menu {
  display: flex;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.primary-menu a {
  font-family: 'DM Sans', sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--heading);
  padding: 6px 12px;
  border-radius: var(--radius);
  transition: background .15s;
}
.primary-menu a:hover { background: var(--green-light); color: var(--green); }
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--heading);
  padding: 4px;
  line-height: 1;
}

/* ── Lead zone (homepage hero) ───────────────────────── */
.lead-zone {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}
.lead-grid {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: center;
}
.lead-text { }
.lead-label {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
  margin-bottom: 14px;
}
.lead-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 14px;
  line-height: 1.15;
}
.lead-excerpt {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 20px;
}
.lead-read {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 11px 22px;
  border-radius: var(--radius);
  transition: background .15s;
}
.lead-read:hover { background: var(--green-dark); color: #fff; }
.lead-feat {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
}
.lead-feat img { width: 100%; height: 260px; object-fit: cover; }

/* ── Feed section ────────────────────────────────────── */
.feed-section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 48px 24px;
}
.feed-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.feed-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--heading);
}
.feed-divider {
  flex: 1;
  height: 1px;
  background: var(--border);
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.item-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow .2s;
}
.item-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,.08); }
.item-img { height: 200px; overflow: hidden; }
.item-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.item-card:hover .item-img img { transform: scale(1.03); }
.item-body { padding: 20px 20px 22px; }
.item-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px;
}
.item-heading {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 10px;
  line-height: 1.3;
}
.item-blurb {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.6;
}
.item-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 4px;
}
.item-link::after { content: "→"; }

/* ── Article layout ─────────────────────────────────── */
.two-col {
  max-width: 1120px;
  margin: 0 auto;
  padding: 40px 24px 60px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}
.art-header { margin-bottom: 28px; }
.art-tag {
  display: inline-block;
  background: var(--green-light);
  color: var(--green);
  font-family: 'DM Sans', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .9px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
  margin-bottom: 14px;
}
.art-title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.12;
}
.art-byline {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--muted);
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 22px;
}
.art-byline img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.art-byline strong { color: var(--heading); }
.art-img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 28px;
  max-height: 420px;
  object-fit: cover;
}
.art-body { font-size: 18.5px; line-height: 1.75; }
.art-body h2 {
  font-size: 26px;
  font-weight: 700;
  margin: 36px 0 14px;
  color: var(--heading);
}
.art-body h3 {
  font-size: 21px;
  font-weight: 600;
  margin: 28px 0 12px;
  color: var(--heading);
}
.art-body ul, .art-body ol { margin-bottom: 1.2rem; }
.art-body a { color: var(--green); text-decoration: underline; }

/* Notice band */
.notice-band {
  background: #fffbf0;
  border: 1px solid #e8d89a;
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13.5px;
  color: #5a4a10;
  margin-bottom: 28px;
  line-height: 1.5;
}

/* Score block */
.score-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 22px 24px;
  margin-bottom: 28px;
}
.score-block-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 12px;
}
.score-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
}
.score-row:last-child { border-bottom: none; }
.score-label { color: var(--muted); }
.star-cluster { color: var(--gold); letter-spacing: 1px; }
.score-val { font-weight: 700; color: var(--heading); }

/* Overall rating */
.overall-score {
  text-align: center;
  padding: 18px;
  background: var(--green-light);
  border-radius: 8px;
  margin-top: 16px;
}
.overall-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 44px;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}
.overall-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}

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

/* Offer block (CTA) */
.offer-block {
  background: var(--heading);
  color: #fff;
  border-radius: 10px;
  padding: 28px 24px;
  text-align: center;
  margin: 32px 0;
}
.offer-head {
  font-family: 'DM Sans', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
  line-height: 1.25;
}
.offer-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: rgba(255,255,255,.75);
  margin-bottom: 20px;
}
.offer-btn {
  display: inline-block;
  background: linear-gradient(135deg, #1fad7b 0%, #0f6b4c 100%);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  font-weight: 700;
  padding: 15px 30px;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(15,107,76,.4);
  transition: opacity .15s;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.offer-btn:hover { opacity: .9; color: #fff; }
.offer-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 12.5px;
  color: rgba(255,255,255,.55);
  margin-top: 10px;
}

/* Pull quote */
.pulltext {
  border-left: 4px solid var(--green);
  padding: 12px 22px;
  margin: 28px 0;
  font-style: italic;
  font-size: 21px;
  color: var(--heading);
  line-height: 1.5;
}

/* Review list (testimonials) */
.rev-list { margin: 0 0 28px; display: flex; flex-direction: column; gap: 18px; }
.rev-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 18px 20px;
}
.rev-stars { color: var(--gold); font-size: 16px; margin-bottom: 6px; }
.rev-text {
  font-size: 17px;
  margin-bottom: 10px;
  font-style: italic;
  color: var(--text);
}
.rev-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--heading);
}
.rev-badge {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: var(--muted);
}

/* ── Sidebar ─────────────────────────────────────────── */
.side-col { position: sticky; top: 84px; }
.sidebar-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 24px;
}
.sidebar-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  background: var(--green-light);
  padding: 12px 18px;
  border-bottom: 1px solid var(--border);
}
.sidebar-body { padding: 18px; }
.sidebar-body p {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 14px;
}
.sidebar-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar-body li {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
}
.sidebar-body li:last-child { border-bottom: none; }
.sidebar-body li a { color: var(--green); font-weight: 500; }
.sidebar-cta {
  display: block;
  background: var(--green);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  padding: 13px 18px;
  border-radius: 6px;
  transition: background .15s;
  text-transform: uppercase;
  letter-spacing: .4px;
}
.sidebar-cta:hover { background: var(--green-dark); color: #fff; }

/* ── Footer ──────────────────────────────────────────── */
.site-foot {
  background: var(--heading);
  color: rgba(255,255,255,.65);
  margin-top: 60px;
}
.foot-grid {
  max-width: 1120px;
  margin: 0 auto;
  padding: 48px 24px 36px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}
.foot-about .brand-mark { color: #7dcfb6; margin-bottom: 12px; }
.foot-about p {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}
.foot-nav h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  margin-bottom: 14px;
}
.foot-nav ul { list-style: none; padding: 0; margin: 0; }
.foot-nav li { margin-bottom: 8px; }
.foot-nav a {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,.6);
  transition: color .15s;
}
.foot-nav a:hover { color: #fff; }
.foot-base {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 24px;
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12.5px;
  flex-wrap: wrap;
}

/* ── Static / Policy pages ───────────────────────────── */
.policy-page {
  max-width: 780px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}
.policy-page h1 {
  font-size: 34px;
  margin-bottom: 8px;
}
.policy-date {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 32px;
  display: block;
}
.policy-page h2 {
  font-size: 20px;
  margin: 28px 0 10px;
}
.policy-page p, .policy-page li { font-size: 16px; line-height: 1.7; }

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 900px) {
  .lead-grid { grid-template-columns: 1fr; }
  .lead-feat { order: -1; }
  .lead-feat img { height: 220px; }
  .card-grid { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .side-col { position: static; }
  .split-block { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .foot-about { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .strip-inner { flex-direction: column; gap: 4px; text-align: center; }
  .strip-links { justify-content: center; }
  .primary-menu { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--white); padding: 12px 16px; border-bottom: 2px solid var(--green); box-shadow: 0 8px 20px rgba(0,0,0,.1); }
  .primary-menu.open { display: flex; }
  .menu-toggle { display: block; }
  .head-wrap { position: relative; }
  .card-grid { grid-template-columns: 1fr; }
  .art-title { font-size: 28px; }
  .foot-grid { grid-template-columns: 1fr; }
  .lead-title { font-size: 26px; }
}
