/* ============================================
   HONESTPETCOVER — DESIGN SYSTEM
   Pet Health Binder / Pet Health Organization Hub
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --primary: #1F4B47;
  --primary-dark: #143430;
  --primary-mid: #3E6B63;
  --sage: #A9B79C;
  --sage-pale: #EEF1E7;
  --accent: #D98866;
  --accent-dark: #B96B4B;
  --ink: #2B2B26;
  --muted: #5F6259;
  --border: #E5E2DC;
  --white: #FFFFFF;
  --bg: #FAF6EF;
  --bg-card: #FFFFFF;
  --font-heading: 'Lora', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--primary);
  line-height: 1.25;
  margin: 0 0 0.6em 0;
  font-weight: 600;
}

h1 { font-size: 2.6rem; }
h2 { font-size: 1.9rem; }
h3 { font-size: 1.4rem; }

p { margin: 0 0 1.1em 0; }

a { color: var(--primary-mid); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; height: auto; display: block; }

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.narrow {
  max-width: 760px;
  margin: 0 auto;
}

.section {
  padding: 72px 0;
}

.section--alt {
  background: var(--sage-pale);
}

.section--dark {
  background: var(--primary);
  color: var(--white);
}
.section--dark h2, .section--dark h3 { color: var(--white); }
.section--dark .muted { color: rgba(255,255,255,0.75); }

.muted { color: var(--muted); }

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 12px;
}

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,246,239,0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav__logo span.paw { font-size: 1.1rem; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav__links a {
  color: var(--ink);
  font-weight: 500;
  font-size: 0.95rem;
}
.nav__cta {
  background: var(--accent);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none !important;
}
.nav__cta:hover { background: var(--accent-dark); }
.nav__burger { display: none; background: none; border: none; font-size: 1.6rem; color: var(--primary); cursor: pointer; }

@media (max-width: 860px) {
  .nav__links { position: fixed; top: 64px; left: 0; right: 0; background: var(--bg); flex-direction: column; align-items: flex-start; padding: 20px 24px; border-bottom: 1px solid var(--border); display: none; gap: 16px; }
  .nav__links.open { display: flex; }
  .nav__burger { display: block; }
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none !important;
  cursor: pointer;
  border: none;
  transition: background 0.15s ease;
}
.btn--primary { background: var(--accent); color: var(--white) !important; }
.btn--primary:hover { background: var(--accent-dark); }
.btn--outline { background: transparent; color: var(--primary) !important; border: 2px solid var(--primary); }
.btn--outline:hover { background: var(--primary); color: var(--white) !important; }
.btn--block { display: block; width: 100%; text-align: center; }

/* ---------- HERO ---------- */
.hero {
  padding: 80px 0 60px;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
}
.hero img { border-radius: 12px; }
.trust-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 28px;
  font-size: 0.92rem;
  color: var(--muted);
}
.trust-row span { display: flex; align-items: center; gap: 6px; }

/* ---------- CARDS / GRID ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
@media (max-width: 800px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
}
.card h3 { margin-bottom: 10px; }
.card .icon { font-size: 1.6rem; margin-bottom: 14px; display: block; }

/* ---------- LIST STYLES ---------- */
.check-list { list-style: none; margin: 0; padding: 0; }
.check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-mid);
  font-weight: 700;
}

/* ---------- FAQ ---------- */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}
.faq-item h3 { font-size: 1.1rem; margin-bottom: 8px; }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.85);
  padding: 56px 0 28px;
  font-size: 0.92rem;
}
.footer a { color: rgba(255,255,255,0.85); }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
@media (max-width: 700px) { .footer__grid { grid-template-columns: 1fr; } }
.footer__grid h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 14px; }
.footer__grid ul { list-style: none; margin: 0; padding: 0; }
.footer__grid li { margin-bottom: 8px; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 22px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
}

/* ---------- DIVIDER / BANNER ---------- */
.disclaimer-banner {
  background: var(--sage-pale);
  border: 1px solid var(--sage);
  border-radius: 10px;
  padding: 20px 24px;
  font-size: 0.92rem;
  color: var(--muted);
  margin: 32px 0;
}

.badge {
  display: inline-block;
  background: var(--sage-pale);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}

/* ---------- ARTICLE ---------- */
.article-body { max-width: 720px; margin: 0 auto; font-size: 17px; }
.article-body h2 { margin-top: 1.6em; }
.article-meta { color: var(--muted); font-size: 0.9rem; margin-bottom: 30px; }
.breadcrumb { font-size: 0.85rem; color: var(--muted); margin-bottom: 20px; }
.breadcrumb a { color: var(--muted); }

table.context-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 0.92rem;
}
table.context-table th, table.context-table td {
  border: 1px solid var(--border);
  padding: 12px 14px;
  text-align: left;
  vertical-align: top;
}
table.context-table th {
  background: var(--sage-pale);
  color: var(--primary);
}

/* ---------- SALES PAGE SPECIFIC ---------- */
.sales-hero { background: var(--sage-pale); padding: 64px 0 48px; }
.price-box {
  background: var(--white);
  border: 2px solid var(--primary);
  border-radius: 14px;
  padding: 36px;
  text-align: center;
  max-width: 460px;
  margin: 0 auto;
}
.price-box .price { font-size: 2.6rem; color: var(--accent-dark); font-weight: 700; font-family: var(--font-heading); }
.price-box .price-old { text-decoration: line-through; color: var(--muted); font-size: 1.1rem; margin-right: 8px; }

.for-forNot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
@media (max-width: 700px) { .for-forNot { grid-template-columns: 1fr; } }
.for-forNot .card--yes { border-left: 4px solid var(--primary-mid); }
.for-forNot .card--no { border-left: 4px solid var(--accent); }

.guarantee-box {
  background: var(--white);
  border: 2px dashed var(--sage);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
}
