/* Shared site styles for thepetparentclub.com */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  /* Fresh Meadow palette: sage green + warm gold + linen */
  --navy: #6b8e5a;          /* sage green, primary */
  --navy-dark: #4f6e44;     /* deeper sage, header bg */
  --navy-darker: #3a5531;   /* deepest sage, footer bg */
  --terra: #d4973b;         /* warm gold, CTA */
  --terra-dark: #b47d26;    /* darker gold, hover */
  --cream: #f6f1e6;         /* warm linen bg */
  --text: #1f2a1a;          /* deep olive-black text */
  --text-light: #5a5a4f;
  --text-muted: #8a8a7e;
  --border: #d8d0bd;
  --bg-white: #fffdf8;      /* slightly warm white */
  --positive: #4f7a3b;
  --negative: #b44d3d;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--cream); font-size: 17px; line-height: 1.7; }
a { color: inherit; }
img { display: block; max-width: 100%; height: auto; }

/* PUB HEADER */
.pub-header { background: var(--navy-dark); color: #fff; padding: 0 24px; border-bottom: 3px solid var(--terra); }
.pub-header-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 64px; }
.pub-logo { display: flex; align-items: center; gap: 12px; color: #fff; text-decoration: none; }
.pub-logo-mark { width: 44px; height: 44px; background: var(--cream); border-radius: 6px; display: flex; align-items: center; justify-content: center; overflow: hidden; flex-shrink: 0; }
.pub-logo-mark img { width: 100%; height: 100%; object-fit: contain; display: block; }
.pub-logo-text { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 19px; line-height: 1.1; }
.pub-logo-text span { display: block; font-family: 'Inter', sans-serif; font-weight: 400; font-size: 11px; opacity: 0.7; letter-spacing: 1.2px; text-transform: uppercase; margin-top: 2px; }
.pub-nav { display: flex; gap: 26px; list-style: none; }
.pub-nav a { color: rgba(255,255,255,0.85); text-decoration: none; font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
.pub-nav a:hover { color: var(--terra); }
@media (max-width: 760px) { .pub-nav { display: none; } .pub-logo-text { font-size: 16px; } }

/* STICKY CTA BAR (presell) */
.sticky-bar { position: sticky; top: 0; z-index: 100; background: #f0ebde; border-bottom: 1px solid var(--border); padding: 10px 20px; }
.sticky-bar-inner { max-width: 760px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.sticky-bar p { font-weight: 700; font-size: 15px; color: var(--navy-darker); }
.sticky-bar .cta-btn { background: var(--terra); color: #fff; border: none; padding: 9px 20px; font-size: 13px; font-weight: 700; letter-spacing: 0.6px; text-transform: uppercase; text-decoration: none; border-radius: 3px; white-space: nowrap; transition: background 0.15s; display: inline-block; }
.sticky-bar .cta-btn:hover { background: var(--terra-dark); color: #fff; }
@media (max-width: 600px) {
  .sticky-bar { padding: 8px 12px; }
  .sticky-bar-inner { gap: 10px; }
  .sticky-bar p { font-size: 12px; flex: 1; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .sticky-bar .cta-btn { padding: 7px 12px; font-size: 11px; flex-shrink: 0; }
}

/* BREADCRUMB */
.breadcrumb { max-width: 760px; margin: 0 auto; padding: 20px 24px 0; font-size: 13px; color: var(--text-muted); }
.breadcrumb a { color: var(--navy-dark); text-decoration: none; font-weight: 600; }
.breadcrumb a:hover { color: var(--terra); }

/* ARTICLE */
.article-wrap { max-width: 760px; margin: 0 auto; padding: 24px 24px 0; background: var(--bg-white); }
.article-head .badge { display: inline-block; background: var(--terra); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; padding: 5px 12px; border-radius: 2px; margin-bottom: 18px; }
.article-head h1 { font-family: 'Playfair Display', serif; font-weight: 900; font-size: 40px; line-height: 1.15; letter-spacing: -0.5px; margin-bottom: 16px; }
.article-head .dek { font-size: 19px; color: var(--text-light); line-height: 1.5; margin-bottom: 22px; }
.article-head .meta { font-size: 13px; color: var(--text-muted); padding-bottom: 22px; border-bottom: 1px solid var(--border); }

.disclosure { background: var(--cream); border-left: 3px solid var(--terra); padding: 14px 18px; margin: 24px 0; font-size: 14px; color: var(--text-light); border-radius: 2px; }

.hero-img { aspect-ratio: 16/9; overflow: hidden; margin: 28px 0 32px; border-radius: 4px; background: var(--navy-dark); }
.hero-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-caption { font-size: 13px; color: var(--text-muted); text-align: center; margin-top: -22px; margin-bottom: 36px; font-style: italic; }

/* BODY */
.article-body p { margin-bottom: 22px; }
.article-body h2 { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 28px; line-height: 1.25; margin: 44px 0 18px; letter-spacing: -0.3px; }
.article-body h3 { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 22px; margin: 32px 0 14px; }
.article-body strong { color: var(--navy-darker); }
.article-body a { color: var(--navy-dark); font-weight: 600; }
.article-body a:hover { color: var(--terra); }
.article-body ul, .article-body ol { margin: 0 0 22px 22px; }
.article-body li { margin-bottom: 8px; }

/* QUICK VERDICT (review) */
.quick-verdict { background: var(--navy-darker); color: #fff; border-radius: 6px; padding: 28px 28px 24px; margin: 32px 0 36px; }
.quick-verdict h3 { font-family: 'Playfair Display', serif; color: #fff; font-size: 22px; margin-bottom: 14px; }
.quick-verdict .rating { display: flex; align-items: baseline; gap: 12px; margin-bottom: 14px; }
.quick-verdict .stars { color: var(--terra); font-size: 22px; letter-spacing: 2px; }
.quick-verdict .score { font-weight: 700; font-size: 18px; color: rgba(255,255,255,0.9); }
.quick-verdict p { color: rgba(255,255,255,0.82); margin-bottom: 12px; font-size: 15px; line-height: 1.6; }
.quick-verdict .verdict-cta { display: inline-block; background: var(--terra); color: #fff; padding: 12px 24px; border-radius: 3px; text-decoration: none; font-weight: 700; font-size: 14px; letter-spacing: 0.6px; text-transform: uppercase; margin-top: 8px; transition: background 0.15s; }
.quick-verdict .verdict-cta:hover { background: var(--terra-dark); color: #fff; }

/* PROS/CONS (review) */
.proscons { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 28px 0; }
.proscons-col { background: var(--cream); border: 1px solid var(--border); border-radius: 4px; padding: 22px; }
.proscons-col h4 { font-family: 'Playfair Display', serif; font-size: 18px; margin-bottom: 12px; }
.proscons-col.pros h4 { color: var(--positive); }
.proscons-col.cons h4 { color: var(--negative); }
.proscons-col ul { list-style: none; margin: 0; padding: 0; }
.proscons-col li { padding-left: 22px; position: relative; margin-bottom: 8px; font-size: 15px; line-height: 1.5; }
.proscons-col.pros li::before { content: "+"; position: absolute; left: 0; color: var(--positive); font-weight: 700; }
.proscons-col.cons li::before { content: "−"; position: absolute; left: 0; color: var(--negative); font-weight: 700; }
@media (max-width: 600px) { .proscons { grid-template-columns: 1fr; } }

/* CTA BOX */
.cta-box { background: var(--cream); border: 2px solid var(--navy-dark); border-radius: 6px; padding: 28px; margin: 36px 0; text-align: center; }
.cta-box h3 { font-family: 'Playfair Display', serif; font-size: 22px; margin-bottom: 10px; }
.cta-box p { color: var(--text-light); margin-bottom: 20px; font-size: 15px; }
.cta-box img.product-shot { display: block; width: 100%; max-width: 340px; height: auto; margin: 0 auto 16px; border-radius: 6px; }
@media (max-width: 600px) { .cta-box { padding: 22px 16px; } }
.cta-btn { display: inline-block; background: var(--terra); color: #fff !important; padding: 14px 32px; border-radius: 3px; text-decoration: none; font-weight: 700; font-size: 15px; letter-spacing: 0.6px; text-transform: uppercase; transition: background 0.15s; }
.cta-btn:hover { background: var(--terra-dark); }
.cta-btn-lg { display: inline-block; background: var(--terra); color: #fff !important; padding: 16px 36px; border-radius: 3px; text-decoration: none; font-weight: 700; font-size: 15px; letter-spacing: 0.6px; text-transform: uppercase; transition: background 0.15s; }
.cta-btn-lg:hover { background: var(--terra-dark); }

/* PULLQUOTE */
.pullquote { font-family: 'Playfair Display', serif; font-style: italic; font-weight: 700; font-size: 26px; line-height: 1.35; color: var(--navy-darker); border-left: 4px solid var(--terra); padding: 8px 0 8px 24px; margin: 36px 0; }

/* COMPARISON TABLE */
.compare-table { width: 100%; border-collapse: collapse; margin: 32px 0; font-size: 15px; background: var(--bg-white); border: 1px solid var(--border); border-radius: 4px; overflow: hidden; }
.compare-table th, .compare-table td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--border); }
.compare-table thead th { background: var(--navy-darker); color: #fff; font-weight: 700; font-size: 14px; letter-spacing: 0.4px; }
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody tr:nth-child(even) { background: var(--cream); }
.compare-table td:first-child { font-weight: 600; color: var(--navy-darker); width: 36%; }
.winner { background: rgba(79, 122, 59, 0.14) !important; font-weight: 600; }

/* WHO BUY BOX (comparison) */
.who-box { background: var(--cream); border-left: 4px solid var(--navy-dark); padding: 22px 24px; margin: 28px 0; border-radius: 0 4px 4px 0; }
.who-box h3 { font-family: 'Playfair Display', serif; font-size: 22px; margin-bottom: 10px; color: var(--navy-darker); }
.who-box p { color: var(--text-light); margin-bottom: 0; font-size: 16px; }

/* TWIN CTA */
.twin-cta { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 36px 0; }
.twin-cta .cta-card { background: var(--cream); border: 2px solid var(--navy-dark); border-radius: 6px; padding: 24px; text-align: center; }
.twin-cta .cta-card h4 { font-family: 'Playfair Display', serif; font-size: 20px; margin-bottom: 8px; }
.twin-cta .cta-card p { font-size: 14px; color: var(--text-light); margin-bottom: 16px; }
@media (max-width: 600px) { .twin-cta { grid-template-columns: 1fr; } }

/* EXPERT BOX (presell) */
.expert-box { background: var(--cream); border: 1px solid var(--border); border-radius: 6px; padding: 24px; margin: 36px 0; display: flex; gap: 18px; align-items: flex-start; }
.expert-avatar { width: 64px; height: 64px; border-radius: 50%; background: var(--navy-dark); flex-shrink: 0; overflow: hidden; }
.expert-avatar img { width: 100%; height: 100%; object-fit: cover; }
.expert-meta .name { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 17px; }
.expert-meta .title { font-size: 13px; color: var(--text-muted); margin-bottom: 8px; }
.expert-meta p { font-size: 14px; color: var(--text-light); line-height: 1.55; margin-bottom: 0; }

/* FAIL/WIN LIST (presell) */
.fail-win { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 28px 0; }
.fw-col { background: var(--cream); border: 1px solid var(--border); border-radius: 4px; padding: 22px; }
.fw-col h4 { font-family: 'Playfair Display', serif; font-size: 18px; margin-bottom: 12px; }
.fw-col.win h4 { color: var(--positive); }
.fw-col.fail h4 { color: var(--negative); }
.fw-col ul { list-style: none; margin: 0; padding: 0; }
.fw-col li { padding-left: 22px; position: relative; margin-bottom: 8px; font-size: 15px; line-height: 1.5; }
.fw-col.win li::before { content: "✓"; position: absolute; left: 0; color: var(--positive); font-weight: 700; }
.fw-col.fail li::before { content: "✕"; position: absolute; left: 0; color: var(--negative); font-weight: 700; }
@media (max-width: 600px) { .fail-win { grid-template-columns: 1fr; } }

/* LISTICLE NUMBER ITEM */
.listicle-item { background: var(--bg-white); border: 1px solid var(--border); border-radius: 6px; padding: 28px; margin: 28px 0; }
.listicle-item .num { display: inline-block; background: var(--navy-darker); color: #fff; font-family: 'Playfair Display', serif; font-weight: 900; font-size: 22px; width: 44px; height: 44px; line-height: 44px; text-align: center; border-radius: 50%; margin-bottom: 14px; }
.listicle-item h3 { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 24px; margin-bottom: 10px; line-height: 1.2; }
.listicle-item .listicle-meta { font-size: 13px; color: var(--text-muted); margin-bottom: 14px; letter-spacing: 0.4px; text-transform: uppercase; font-weight: 600; }

/* RELATED */
.related { max-width: 760px; margin: 56px auto 0; padding: 36px 24px; border-top: 1px solid var(--border); background: var(--bg-white); }
.related h3 { font-family: 'Playfair Display', serif; font-size: 22px; margin-bottom: 18px; }
.related ul { list-style: none; }
.related li { padding: 12px 0; border-bottom: 1px solid var(--border); }
.related li:last-child { border-bottom: none; }
.related a { color: var(--navy-dark); font-weight: 600; text-decoration: none; }
.related a:hover { color: var(--terra); }

/* FOOTER */
.site-footer { background: var(--navy-darker); color: rgba(255,255,255,0.75); padding: 48px 24px 28px; font-size: 14px; margin-top: 64px; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 36px; }
.footer-brand { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 18px; color: #fff; margin-bottom: 12px; }
.footer-disclosure { font-size: 13px; line-height: 1.55; color: rgba(255,255,255,0.6); }
.footer-col h4 { color: #fff; font-size: 12px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; margin-bottom: 14px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: rgba(255,255,255,0.75); text-decoration: none; }
.footer-col a:hover { color: var(--terra); }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.12); font-size: 12px; color: rgba(255,255,255,0.5); text-align: center; }
@media (max-width: 700px) { .footer-inner { grid-template-columns: 1fr; gap: 28px; } }
@media (max-width: 760px) {
  .article-head h1 { font-size: 30px; }
  .article-head .dek { font-size: 17px; }
  .article-body h2 { font-size: 24px; }
  .pullquote { font-size: 21px; }
}

/* HOMEPAGE STYLES */
body.home a { text-decoration: none; }
body.home img { display: block; max-width: 100%; height: auto; }

.featured { background: var(--bg-white); border-bottom: 1px solid var(--border); }
.featured-inner { max-width: 1200px; margin: 0 auto; padding: 48px 24px; display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: center; }
.featured-img { aspect-ratio: 16/9; overflow: hidden; border-radius: 4px; }
.featured-img img { width: 100%; height: 100%; object-fit: cover; }
.featured-content .badge { display: inline-block; background: var(--terra); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; padding: 5px 12px; border-radius: 2px; margin-bottom: 18px; }
.featured-content h1 { font-family: 'Playfair Display', serif; font-weight: 900; font-size: 42px; line-height: 1.1; letter-spacing: -0.5px; margin-bottom: 18px; }
.featured-content h1 a:hover { color: var(--navy-dark); }
.featured-content .dek { color: var(--text-light); font-size: 17px; line-height: 1.55; margin-bottom: 22px; }
.featured-content .meta { font-size: 13px; color: var(--text-muted); letter-spacing: 0.3px; }
@media (max-width: 860px) { .featured-inner { grid-template-columns: 1fr; gap: 24px; padding: 32px 20px; } .featured-content h1 { font-size: 30px; } }

.section-head-wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-head { max-width: 1200px; margin: 0 auto; padding: 56px 24px 24px; display: flex; align-items: baseline; justify-content: space-between; border-bottom: 2px solid var(--navy-dark); margin-bottom: 32px; }
.section-head h2 { font-family: 'Playfair Display', serif; font-weight: 900; font-size: 28px; letter-spacing: -0.3px; }
.section-head .section-tag { font-size: 11px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; color: var(--terra); }

.card-grid { max-width: 1200px; margin: 0 auto 64px; padding: 0 24px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
@media (max-width: 900px) { .card-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
@media (max-width: 600px) { .card-grid { grid-template-columns: 1fr; } }

.card { background: var(--bg-white); border: 1px solid var(--border); border-radius: 4px; overflow: hidden; transition: transform 0.18s ease, box-shadow 0.18s ease; }
.card:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(58, 85, 49, 0.15); }
.card-img { aspect-ratio: 3/2; overflow: hidden; background: var(--navy-dark); }
.card-img img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 22px 22px 26px; }
.card-cat { font-size: 10px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; color: var(--terra); margin-bottom: 10px; }
.card h3 { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 22px; line-height: 1.25; margin-bottom: 12px; }
.card h3 a:hover { color: var(--navy-dark); }
.card .card-dek { color: var(--text-light); font-size: 14px; line-height: 1.5; }

.coming-soon { background: var(--navy-darker); color: #fff; padding: 56px 24px; text-align: center; }
.coming-soon-inner { max-width: 760px; margin: 0 auto; }
.coming-soon h2 { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 30px; margin-bottom: 14px; color: #fff; }
.coming-soon p { font-size: 16px; color: rgba(255,255,255,0.78); margin-bottom: 28px; line-height: 1.6; }
.coming-soon-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.coming-soon-tag { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18); color: rgba(255,255,255,0.85); font-size: 12px; font-weight: 600; padding: 7px 14px; border-radius: 30px; letter-spacing: 0.3px; }

.newsletter { background: var(--cream); padding: 64px 24px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.newsletter-inner { max-width: 640px; margin: 0 auto; text-align: center; }
.newsletter h2 { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 30px; margin-bottom: 12px; }
.newsletter p { color: var(--text-light); margin-bottom: 24px; }
.newsletter-form { display: flex; gap: 8px; max-width: 460px; margin: 0 auto; }
.newsletter-form input { flex: 1; padding: 14px 16px; font-family: inherit; font-size: 15px; border: 1px solid var(--border); border-radius: 3px; background: #fff; }
.newsletter-form input:focus { outline: 2px solid var(--navy); outline-offset: 1px; }
.newsletter-form button { background: var(--terra); color: #fff; border: none; padding: 14px 24px; font-family: inherit; font-weight: 700; font-size: 14px; letter-spacing: 0.6px; text-transform: uppercase; border-radius: 3px; cursor: pointer; transition: background 0.15s; }
.newsletter-form button:hover { background: var(--terra-dark); }
@media (max-width: 500px) { .newsletter-form { flex-direction: column; } }

/* LEGAL PAGES */
.legal { max-width: 760px; margin: 0 auto; padding: 48px 24px 64px; background: var(--bg-white); }
.legal h1 { font-family: 'Playfair Display', serif; font-weight: 900; font-size: 38px; margin-bottom: 16px; }
.legal .last-updated { color: var(--text-muted); font-size: 14px; margin-bottom: 32px; padding-bottom: 18px; border-bottom: 1px solid var(--border); }
.legal h2 { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 24px; margin: 36px 0 14px; }
.legal p { margin-bottom: 16px; }
.legal ul { margin: 0 0 22px 22px; }
.legal li { margin-bottom: 8px; }
.legal .highlight { background: var(--cream); border-left: 3px solid var(--terra); padding: 16px 20px; margin: 24px 0; border-radius: 2px; }
.legal a { color: var(--navy-dark); }
.legal a:hover { color: var(--terra); }
