/* === GROOM YOUR PUP === */
/* Warm, friendly, trustworthy — sage green and cream */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700;9..144,800&family=Nunito:wght@400;500;600;700;800&display=swap');

:root {
  --text: #2d2a26;
  --text-mid: #5a544c;
  --text-light: #8a8278;
  --bg: #fefcf8;
  --bg-elev: #ffffff;
  --bg-warm: #f7f3ec;
  --accent: #5a8a5e;
  --accent-hover: #467049;
  --accent-light: #e8f0e9;
  --accent-deep: #2d5530;
  --border: #ebe5da;
  --border-light: #f3eee5;
  --green: #5a8a5e;
  --green-bg: #e8f0e9;
  --green-border: #b8d4ba;
  --red: #c75450;
  --red-bg: #fdf2f1;
  --warm: #d4825a;
  --warm-bg: #fcf2eb;
  --shadow-sm: 0 1px 3px rgba(74,60,40,0.06), 0 1px 2px rgba(74,60,40,0.04);
  --shadow-md: 0 4px 16px rgba(74,60,40,0.08), 0 2px 6px rgba(74,60,40,0.04);
  --radius: 12px;
}

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

body {
  font-family: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

.site-header {
  background: var(--bg-elev);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 18px 0;
  box-shadow: var(--shadow-sm);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  letter-spacing: -0.3px;
}
.site-name:hover { color: var(--accent); }

.site-logo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 700;
}

nav { display: flex; gap: 6px; }
nav a {
  color: var(--text-mid);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 24px;
  transition: all 0.15s;
  font-family: 'Nunito', sans-serif;
}
nav a:hover { color: var(--accent); background: var(--accent-light); }

.container { max-width: 780px; margin: 0 auto; padding: 0 28px; }
.page-wrapper { max-width: 1100px; margin: 0 auto; padding: 0 28px; }

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 22px;
  margin-bottom: 60px;
}

.article-card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.2s;
  box-shadow: var(--shadow-sm);
}
.article-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
  transform: translateY(-3px);
}
.article-card .article-meta {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  margin-bottom: 12px;
}
.article-card h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  line-height: 1.3;
  margin: 0 0 10px 0;
  font-weight: 700;
  letter-spacing: -0.3px;
}
.article-card h2 a { color: var(--text); text-decoration: none; }
.article-card h2 a:hover { color: var(--accent); }
.article-card .excerpt { font-size: 15px; line-height: 1.6; color: var(--text-mid); margin: 0; }

article { background: transparent; padding: 48px 0; margin-bottom: 40px; }
.article-meta { font-size: 13px; font-weight: 600; color: var(--text-light); margin-bottom: 14px; }
h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 44px;
  line-height: 1.15;
  margin-bottom: 22px;
  letter-spacing: -1px;
  font-weight: 700;
  color: var(--text);
}
h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 28px;
  margin-top: 48px;
  margin-bottom: 16px;
  font-weight: 700;
  letter-spacing: -0.3px;
}
h3 { font-size: 20px; font-weight: 700; margin-top: 32px; margin-bottom: 10px; font-family: 'Nunito', sans-serif; }
p { margin-bottom: 20px; color: var(--text-mid); }
a { color: var(--accent); text-decoration: none; font-weight: 600; }
a:hover { color: var(--accent-hover); text-decoration: underline; }

.tldr {
  background: var(--accent-light);
  border: 1px solid var(--green-border);
  border-radius: var(--radius);
  padding: 26px 30px;
  margin: 24px 0 32px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
}
.tldr strong { color: var(--text); font-weight: 700; }
.tldr strong:first-child {
  display: block;
  margin-bottom: 10px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  font-weight: 800;
}

.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 24px 0 32px;
  font-size: 14px;
  line-height: 1.5;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-elev);
  box-shadow: var(--shadow-sm);
}
.comparison-table th {
  background: var(--bg-warm);
  color: var(--text);
  padding: 16px 18px;
  text-align: left;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.comparison-table td { padding: 16px 18px; border-bottom: 1px solid var(--border-light); vertical-align: top; color: var(--text-mid); }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table .price { font-weight: 700; color: var(--accent); }
.comparison-table .best-for { font-style: italic; color: var(--text-light); font-size: 13px; }
.comparison-table strong { color: var(--text); }

.verdict {
  background: var(--accent-light);
  border: 1px solid var(--green-border);
  border-radius: var(--radius);
  padding: 26px 30px;
  margin: 24px 0;
}
.verdict h4 { color: var(--accent); font-size: 12px; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 10px; font-weight: 800; }
.verdict p { margin-bottom: 0; font-size: 16px; color: var(--text); }

.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 20px 0 28px; font-size: 14px; }
.pros, .cons { padding: 22px; border-radius: var(--radius); border: 1px solid; }
.pros { background: var(--green-bg); border-color: var(--green-border); }
.cons { background: var(--red-bg); border-color: #f5cac6; }
.pros h4 { color: var(--accent); font-size: 12px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; font-weight: 800; }
.cons h4 { color: var(--red); font-size: 12px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; font-weight: 800; }
.pros li, .cons li { margin-bottom: 8px; list-style: none; padding-left: 22px; position: relative; line-height: 1.5; color: var(--text-mid); }
.pros li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: bold; }
.cons li::before { content: '✗'; position: absolute; left: 0; color: var(--red); font-weight: bold; }

.faq { margin: 56px 0 32px; border-top: 2px solid var(--border); padding-top: 36px; }
.faq h2 { margin-top: 0; }
.faq-item {
  margin-bottom: 16px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 26px;
  box-shadow: var(--shadow-sm);
}
.faq-item h3 { font-family: 'Fraunces', Georgia, serif; font-size: 19px; font-weight: 600; margin-top: 0; margin-bottom: 10px; color: var(--text); }
.faq-item p { margin-bottom: 0; color: var(--text-mid); font-size: 15px; }

.author-box {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--bg-warm);
  border: 1px solid var(--border);
  padding: 24px;
  border-radius: var(--radius);
  margin: 48px 0;
  font-size: 14px;
}
.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}
.author-name { font-weight: 700; margin-bottom: 2px; color: var(--text); }
.author-bio { color: var(--text-light); font-size: 13px; }

.affiliate-disclosure { font-size: 13px; color: var(--text-light); margin: 20px 0 28px; padding: 14px 20px; background: var(--bg-warm); border: 1px solid var(--border); border-radius: var(--radius); }
.affiliate-disclosure strong { color: var(--text-mid); }

.site-footer { background: var(--accent-deep); color: rgba(255,255,255,0.7); padding: 48px 0; font-size: 13px; margin-top: 60px; }
.site-footer a { color: rgba(255,255,255,0.9); }
.footer-inner { max-width: 1100px; margin: 0 auto; padding: 0 28px; display: flex; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.footer-brand { font-family: 'Fraunces', serif; font-size: 20px; color: #fff; margin-bottom: 8px; font-weight: 700; }

.cta-button {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 14px 32px;
  border-radius: 32px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  transition: all 0.2s;
  box-shadow: var(--shadow-sm);
}
.cta-button:hover { background: var(--accent-hover); color: white; text-decoration: none; transform: translateY(-2px); box-shadow: var(--shadow-md); }

@media (max-width: 768px) {
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  .articles-grid { grid-template-columns: 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
  .comparison-table { font-size: 12px; }
  .comparison-table td, .comparison-table th { padding: 10px 12px; }
  .header-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  nav { flex-wrap: wrap; }
  .footer-inner { flex-direction: column; }
}

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
