/* Healthy Pup Report — modern wellness report theme */

:root {
  --forest: #1A4D3A;
  --forest-deep: #103126;
  --tan: #D4A574;
  --tan-deep: #B98856;
  --offwhite: #F7F4ED;
  --paper: #FFFFFF;
  --rule: #DDD7C8;
  --ink: #25292E;
  --ink-soft: #5C6470;
  --good: #2D7D5F;
  --warn: #B45A3C;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--offwhite);
  color: var(--ink);
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.65;
}

a { color: var(--forest); text-decoration: underline; text-underline-offset: 2px; }
a:hover { color: var(--tan-deep); }

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

/* Header */
.head-bar {
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  padding: 16px 24px;
}
.head-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--forest-deep);
}
.brand-mark {
  width: 28px;
  height: 28px;
  background: var(--forest);
  border-radius: 6px;
  position: relative;
}
.brand-mark::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  width: 16px;
  height: 16px;
  background: var(--tan);
  border-radius: 50%;
}
.brand-name {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.01em;
}
.brand-name span { color: var(--tan-deep); font-weight: 500; font-style: italic; }
.nav-row {
  display: flex;
  gap: 22px;
  font-size: 14px;
  font-weight: 600;
}
.nav-row a {
  color: var(--ink);
  text-decoration: none;
  position: relative;
  padding: 2px 0;
}
.nav-row a:hover { color: var(--forest); }
.nav-row a:hover::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--tan);
}

/* Article frame */
.article-frame {
  max-width: 1080px;
  margin: 0 auto;
  padding: 36px 24px 80px;
}

/* Hero frame */
.hero-frame {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 36px;
  background: var(--paper);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(26, 77, 58, 0.06);
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 18px;
}
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--tan); display: inline-block; }
.sep { color: var(--rule); }
.hero-frame h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 800;
  font-size: 38px;
  line-height: 1.15;
  color: var(--forest-deep);
  margin: 0 0 18px;
  letter-spacing: -0.01em;
}
.standfirst {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 24px;
}
.hero-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.meta-item {
  border-left: 3px solid var(--tan);
  padding-left: 10px;
}
.meta-label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 700;
}
.meta-val {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--forest-deep);
}
.meta-val.score { color: var(--tan-deep); font-size: 19px; }
.hero-frame-img img { width: 100%; border-radius: 14px; }

/* Disclosure */
.declare {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-left: 4px solid var(--tan);
  padding: 14px 20px;
  font-size: 13px;
  line-height: 1.55;
  display: flex;
  gap: 14px;
  margin: 0 0 36px;
  border-radius: 4px;
  flex-wrap: wrap;
}
.declare-tag {
  background: var(--tan);
  color: var(--paper);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 3px;
  flex-shrink: 0;
  align-self: center;
}
.declare-text { flex: 1; }

/* Snap card */
.snap-card {
  background: var(--forest);
  color: var(--paper);
  padding: 30px 36px;
  border-radius: 20px;
  margin: 0 0 36px;
  position: relative;
}
.snap-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 14px;
  flex-wrap: wrap;
  gap: 10px;
}
.snap-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--tan);
}
.snap-rating { color: var(--tan); font-size: 18px; }
.snap-rating em {
  font-family: 'Fraunces', Georgia, serif;
  font-style: normal;
  font-weight: 800;
  font-size: 22px;
  color: var(--paper);
  margin-left: 6px;
}
.snap-card p { font-size: 16px; line-height: 1.7; margin: 0 0 18px; }
.snap-card a { color: var(--tan); }
.snap-cta { margin: 18px 0 0; }

/* Action button */
.action {
  display: inline-block;
  background: var(--tan);
  color: var(--forest-deep);
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.02em;
  padding: 13px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.15s ease;
}
.action:hover { background: var(--tan-deep); color: var(--paper); }
.action.big { font-size: 16px; padding: 16px 30px; }

/* Pros / cons bands */
.band-pros {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--paper);
  border-radius: 16px;
  overflow: hidden;
  margin: 0 0 40px;
  box-shadow: 0 2px 12px rgba(26, 77, 58, 0.06);
}
.band-half { padding: 26px 28px; }
.band-tag {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 12px;
}
.band-pros-pos { background: var(--paper); border-right: 1px solid var(--rule); }
.band-pros-pos .band-tag { color: var(--good); }
.band-pros-neg { background: var(--offwhite); }
.band-pros-neg .band-tag { color: var(--warn); }
.band-half ul { margin: 0; padding-left: 20px; }
.band-half li { font-size: 14px; line-height: 1.55; margin-bottom: 8px; }

/* Anchor bar */
.anchor-bar {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 22px 28px;
  margin: 0 0 48px;
}
.anchor-bar-title {
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--forest);
  margin-bottom: 12px;
}
.anchor-bar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}
.anchor-bar li {
  font-size: 13px;
  font-weight: 600;
}
.anchor-bar a {
  color: var(--ink);
  text-decoration: none;
  padding: 4px 10px;
  border-radius: 6px;
  background: var(--offwhite);
}
.anchor-bar a:hover { background: var(--tan); color: var(--forest-deep); }

/* Article typography */
.article-frame h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 800;
  font-size: 30px;
  line-height: 1.2;
  color: var(--forest-deep);
  margin: 44px 0 16px;
  letter-spacing: -0.005em;
}
.article-frame h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 21px;
  color: var(--forest-deep);
  margin: 28px 0 10px;
}
.article-frame p { margin: 0 0 18px; }
.article-frame > ul, .article-frame > ol { margin: 0 0 22px; padding-left: 22px; }
.article-frame > ul li, .article-frame > ol li { margin-bottom: 6px; line-height: 1.6; }

/* Chem list */
.chem-list { list-style: none; padding-left: 0; margin: 0 0 28px; }
.chem-list li {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 22px;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
}
.chem-list li:last-child { border-bottom: none; }
.chem-name {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--forest);
}
.chem-line { font-size: 15px; line-height: 1.6; }

/* Subject grid */
.subject-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 0 0 28px;
}
.subject-card {
  background: var(--paper);
  border-radius: 14px;
  padding: 22px;
  border-top: 4px solid var(--tan);
  box-shadow: 0 2px 8px rgba(26, 77, 58, 0.05);
}
.subject-name {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--forest-deep);
  margin-bottom: 2px;
}
.subject-stats {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 10px;
  font-weight: 600;
}
.subject-card p { font-size: 14px; line-height: 1.55; margin: 0; }

/* Strip CTA */
.strip-cta {
  background: var(--forest-deep);
  color: var(--paper);
  padding: 18px 24px;
  border-radius: 12px;
  margin: 28px 0 36px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.strip-cta p {
  flex: 1;
  font-size: 14px;
  margin: 0;
  line-height: 1.5;
}

/* Report table */
.rep-table-wrap { overflow-x: auto; margin: 0 0 28px; }
.rep-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 14px;
  background: var(--paper);
  border-radius: 12px;
  overflow: hidden;
  margin: 0 0 18px;
  min-width: 600px;
  box-shadow: 0 2px 8px rgba(26, 77, 58, 0.05);
}
.rep-table th, .rep-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--rule);
  vertical-align: top;
}
.rep-table thead th {
  background: var(--forest);
  color: var(--paper);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.rep-table tbody tr:nth-child(odd) { background: var(--offwhite); }
.tag-pick {
  display: inline-block;
  background: var(--tan);
  color: var(--forest-deep);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 6px;
  text-transform: uppercase;
}
.footnote { font-size: 12px; color: var(--ink-soft); margin: -6px 0 20px; font-style: italic; }

/* Quote */
.rep-quote {
  margin: 18px 0;
  padding: 20px 26px;
  background: var(--paper);
  border-left: 4px solid var(--tan);
  border-radius: 0 12px 12px 0;
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  box-shadow: 0 2px 6px rgba(26, 77, 58, 0.04);
}
.rep-quote cite {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  color: var(--ink-soft);
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* FAQ */
.rep-faq { margin: 0 0 32px; }
.rep-faq details {
  background: var(--paper);
  border-radius: 10px;
  padding: 16px 22px;
  margin-bottom: 8px;
  box-shadow: 0 1px 4px rgba(26, 77, 58, 0.04);
}
.rep-faq summary {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--forest-deep);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 28px;
}
.rep-faq summary::-webkit-details-marker { display: none; }
.rep-faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: -2px;
  font-size: 22px;
  color: var(--tan-deep);
  font-weight: 700;
}
.rep-faq details[open] summary::after { content: "\2013"; }
.rep-faq details p {
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.6;
}

/* Verdict frame */
.verdict-frame {
  background: var(--paper);
  border-radius: 20px;
  padding: 36px;
  margin: 36px 0;
  border-top: 6px solid var(--tan);
  text-align: center;
  box-shadow: 0 4px 18px rgba(26, 77, 58, 0.06);
}
.verdict-tag {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--forest);
  margin-bottom: 6px;
}
.verdict-score-big {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 800;
  font-size: 64px;
  color: var(--forest-deep);
  line-height: 1;
}
.verdict-score-big span { font-size: 28px; color: var(--ink-soft); font-weight: 500; }
.verdict-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--tan-deep);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 6px;
  margin-bottom: 18px;
}
.verdict-frame p {
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 18px;
  text-align: left;
}
.verdict-cta-block { text-align: center !important; margin: 24px 0 6px !important; }
.verdict-fine { font-size: 12px; color: var(--ink-soft); font-style: italic; text-align: center !important; }

/* Reviewer block */
.reviewer-block {
  margin: 44px 0 0;
  padding: 26px 28px;
  background: var(--paper);
  border-radius: 16px;
  border-left: 4px solid var(--forest);
}
.reviewer-grid {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 22px;
  align-items: flex-start;
}
.reviewer-mark {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--paper);
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 800;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reviewer-body h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 19px;
  margin: 0 0 8px;
  color: var(--forest-deep);
}
.reviewer-body p { font-size: 14px; margin: 0; line-height: 1.6; }

/* Footer */
.report-foot {
  background: var(--forest-deep);
  color: var(--paper);
  padding: 48px 24px 24px;
  margin-top: 60px;
}
.rfoot-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 36px;
}
.rfoot-col .brand { margin-bottom: 10px; }
.rfoot-col .brand-name { color: var(--paper); }
.rfoot-col .brand-mark { background: var(--tan); }
.rfoot-col .brand-mark::after { background: var(--forest-deep); }
.rfoot-col p { font-size: 13px; opacity: 0.75; margin: 0; }
.rfoot-col h4 {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 12px;
  color: var(--tan);
}
.rfoot-col ul { list-style: none; margin: 0; padding: 0; }
.rfoot-col li { margin-bottom: 6px; font-size: 13px; }
.rfoot-col a { color: var(--paper); text-decoration: none; opacity: 0.85; }
.rfoot-col a:hover { opacity: 1; text-decoration: underline; }
.rfoot-fine {
  max-width: 1200px;
  margin: 32px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 11px;
  opacity: 0.6;
  line-height: 1.6;
}

/* Mobile */
@media (max-width: 820px) {
  .hero-frame { grid-template-columns: 1fr; padding: 28px; }
  .hero-frame h1 { font-size: 28px; }
  .hero-meta { grid-template-columns: repeat(2, 1fr); }
  .chem-list li { grid-template-columns: 1fr; gap: 6px; }
  .subject-grid { grid-template-columns: 1fr; }
  .band-pros { grid-template-columns: 1fr; }
  .band-pros-pos { border-right: none; border-bottom: 1px solid var(--rule); }
  .reviewer-grid { grid-template-columns: 1fr; }
  .reviewer-mark { width: 64px; height: 64px; font-size: 20px; }
  .rfoot-inner { grid-template-columns: 1fr; gap: 24px; }
  .article-frame { padding: 24px 16px 60px; }
  .article-frame h2 { font-size: 24px; }
  .nav-row { gap: 14px; font-size: 13px; }
}

@media (max-width: 480px) {
  .hero-meta { grid-template-columns: 1fr 1fr; }
  .verdict-score-big { font-size: 50px; }
}
