/* ============================================================
   Horse Boost Guide: Global Stylesheet
   ============================================================ */

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

:root {
  /* Colors */
  --navy: #190708;
  --charcoal: #2B0B0D;
  --forest: #5B080B;
  --copper: #B51E23;
  --amber: #DD2A2F;
  --gold: #F2C94C;
  --cta-green: #C5161D;
  --cta-green-hover: #970C12;
  --burgundy: #65070A;
  --hero-bg: #FFF7F2;
  --cream: #FFF2E7;
  --sage: #FFF0EE;
  --stone: #F7F3F1;
  --blue-grey: #F3EFED;
  --white: #FFFFFF;
  --text: #281719;
  --text-secondary: #705A5D;
  --border: #E6D2CE;
  --success-bg: #FFF0BF;
  --caution-bg: #FFF5D7;

  /* Type */
  --font-head: 'Fraunces', Georgia, serif;
  --font-body: 'Inter Tight', Inter, Arial, sans-serif;

  /* Layout */
  --max-width: 1180px;
  --reading-width: 800px;
  --radius-card: 20px;
  --radius-btn: 11px;
  --space-section: 90px;
  --space-section-mobile: 60px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  font-size: 19px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.15;
  margin: 0 0 18px;
  font-weight: 600;
}

h1 { font-size: 62px; }
h2 { font-size: 42px; }
h3 { font-size: 26px; }

p { margin: 0 0 16px; color: var(--text); }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.reading {
  max-width: var(--reading-width);
  margin: 0 auto;
}

section {
  padding: var(--space-section) 0;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--copper);
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

.section-head p {
  color: var(--text-secondary);
  font-size: 19px;
}

/* Backgrounds for alternation */
.bg-white   { background: var(--white); }
.bg-cream   { background: var(--cream); }
.bg-sage    { background: var(--sage); }
.bg-stone   { background: var(--stone); }
.bg-bluegrey{ background: var(--blue-grey); }
.bg-hero    { background: var(--hero-bg); }
.bg-navy    { background: var(--navy); color: var(--white); }
.bg-navy h2, .bg-navy h3, .bg-navy p { color: var(--white); }
.bg-forest  { background: var(--forest); color: var(--white); }
.bg-forest h2, .bg-forest h3 { color: var(--white); }

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 13px 30px;
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 18px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #D51C22, var(--cta-green-hover));
  color: var(--white);
  box-shadow: 0 8px 20px rgba(151, 12, 18, 0.28);
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(151, 12, 18, 0.36); }

.btn-secondary {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn-secondary:hover { background: var(--navy); color: var(--white); }

.btn-arrow::after {
  content: "→";
  font-weight: 700;
}

a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

/* ============ Announcement bar ============ */
.announce {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  font-size: 14.5px;
  font-weight: 600;
  padding: 10px 16px;
  letter-spacing: 0.01em;
}
.announce svg { vertical-align: -3px; margin-right: 6px; }

/* ============ Header ============ */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #7D1115, var(--navy));
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--amber);
  font-size: 17px;
}

.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text .name { font-family: var(--font-head); font-weight: 600; font-size: 21px; color: var(--navy); }
.logo-text .sub { font-size: 12px; color: var(--text-secondary); letter-spacing: 0.03em; }

nav.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

nav.main-nav a.nav-link {
  font-weight: 600;
  font-size: 15.5px;
  color: var(--text);
}
nav.main-nav a.nav-link:hover { color: var(--copper); }

.header-cta { display: flex; align-items: center; gap: 18px; }
.header-cta .btn { padding: 11px 22px; font-size: 15.5px; min-height: 44px; }

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--navy);
  margin: 5px 0;
  border-radius: 2px;
  transition: 0.2s;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 10px 24px 20px;
}
.mobile-nav a { padding: 12px 0; font-weight: 600; border-bottom: 1px solid var(--border); }
.mobile-nav.open { display: flex; }

@media (max-width: 940px) {
  nav.main-nav, .header-cta .btn-secondary { display: none; }
  .header-cta .btn-primary { padding: 10px 16px; font-size: 14px; }
  .hamburger { display: block; }
}

/* ============ Hero ============ */
.hero {
  background: var(--hero-bg);
  padding: 52px 0 68px;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 42px;
  align-items: center;
}
.hero h1 { font-size: 52px; margin-bottom: 18px; }
.hero-label {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: var(--forest);
  background: var(--sage);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.hero p.lead { font-size: 20px; color: var(--text-secondary); max-width: 560px; }

.hero-bullets { list-style: none; padding: 0; margin: 26px 0 32px; }
.hero-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 600;
  font-size: 17.5px;
  margin-bottom: 12px;
  color: var(--text);
}
.hero-bullets li svg { flex-shrink: 0; margin-top: 3px; }

.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 34px; }

.trust-badges {
  display: flex;
  gap: 14px;
  flex-wrap: nowrap;
}
.trust-badge {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 14px;
  text-align: center;
  flex: 1;
  box-shadow: 0 4px 10px rgba(7,23,34,0.04);
}
.trust-badge .val { font-family: var(--font-head); font-size: 19px; font-weight: 700; color: var(--copper); display: block; }
.trust-badge .lbl { font-size: 12.5px; color: var(--text-secondary); font-weight: 600; }

@media (max-width: 780px) {
  .trust-badges { flex-wrap: wrap; }
  .trust-badge { flex: 1 1 45%; }
}

.hero-image-wrap {
  position: relative;
  width: 100%;
  max-width: 365px;
  justify-self: end;
  text-align: center;
}
.hero-image-wrap img {
  width: auto !important;
  height: auto !important;
  max-width: 100%;
  max-height: 365px;
  aspect-ratio: auto !important;
  object-fit: contain;
  margin: 0 auto;
  border-radius: 18px;
  box-shadow: 0 22px 44px rgba(91,8,11,0.16);
}
.hero-affiliate-note {
  font-size: 13.5px;
  color: var(--text-secondary);
  margin-top: 14px;
}

@media (max-width: 940px) {
  .hero {
    padding: 46px 0 60px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .hero h1 { font-size: 40px; }
  .hero-image-wrap {
    max-width: 340px;
    justify-self: center;
  }
  .hero-image-wrap img { max-height: 340px; }
}

/* ============ Ticker ============ */
.ticker-wrap {
  background: var(--navy);
  overflow: hidden;
  padding: 16px 0;
  border-top: 1px solid rgba(242,201,76,0.32);
  border-bottom: 1px solid rgba(242,201,76,0.32);
}
.ticker-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  width: max-content;
  animation: scroll-ticker 32s linear infinite;
}
.ticker-track span {
  color: var(--white);
  font-weight: 600;
  font-size: 15.5px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ticker-track span::after {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--copper);
  margin-left: 40px;
}
@keyframes scroll-ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; overflow-x: auto; }
}

/* ============ Quick facts ============ */
.quick-facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.fact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 26px 22px;
  box-shadow: 0 6px 18px rgba(7,23,34,0.05);
}
.fact-card .label {
  font-size: 13.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--copper);
  margin-bottom: 8px;
}
.fact-card .value {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
}
@media (max-width: 860px) {
  .quick-facts-grid { grid-template-columns: 1fr 1fr; }
}

/* ============ Editorial team card ============ */
.editorial-card {
  display: flex;
  align-items: center;
  gap: 22px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 26px 30px;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: 0 6px 18px rgba(7,23,34,0.05);
}
.editorial-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.editorial-card .name { font-weight: 700; font-size: 18px; color: var(--navy); }
.editorial-card .role { font-size: 14.5px; color: var(--copper); font-weight: 600; margin-bottom: 6px; }
.editorial-card .desc { font-size: 15.5px; color: var(--text-secondary); margin: 0; }
.editorial-card .updated { font-size: 13px; color: var(--text-secondary); margin-top: 6px; }

/* ============ Two column text ============ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: 30px; }
}

/* ============ Supplement facts table ============ */
.compare-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.compare-table {
  display: table;
  width: 100%;
  min-width: 480px;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.compare-table thead { display: table-header-group; }
.compare-table tbody { display: table-row-group; }
.compare-table tr { display: table-row; }
.compare-table th, .compare-table td {
  display: table-cell;
  padding: 18px 20px;
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid var(--border);
}
.compare-table thead th {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody tr:nth-child(even) { background: var(--stone); }
.compare-table td:first-child { font-weight: 600; }

.table-footnote {
  font-size: 14.5px;
  color: var(--text-secondary);
  margin-top: 16px;
}

/* ============ How it works steps ============ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 30px 24px;
  box-shadow: 0 6px 18px rgba(7,23,34,0.05);
}
.step-num {
  font-family: var(--font-head);
  font-size: 34px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}
.step-card h3 { font-size: 20px; margin-bottom: 10px; }
.step-card p { font-size: 16.5px; color: var(--text-secondary); margin: 0; }
@media (max-width: 940px) {
  .steps-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .steps-grid { grid-template-columns: 1fr; }
}

.transparency-note {
  background: var(--caution-bg);
  border: 1px solid #EBD9A0;
  border-radius: 14px;
  padding: 20px 24px;
  font-size: 16px;
  color: var(--text);
  margin-top: 30px;
}

/* ============ Benefit cards ============ */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.benefit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 30px 26px;
  box-shadow: 0 6px 18px rgba(7,23,34,0.05);
}
.benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.benefit-card h3 { font-size: 20px; }
.benefit-card p { font-size: 16.5px; color: var(--text-secondary); margin: 0; }
@media (max-width: 940px) {
  .benefit-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .benefit-grid { grid-template-columns: 1fr; }
}

/* ============ Ingredient cards ============ */
.ingredient-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ingredient-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 0 0 26px;
  box-shadow: 0 6px 18px rgba(7,23,34,0.05);
  overflow: hidden;
}
.ingredient-visual {
  height: 120px;
  background: linear-gradient(135deg, var(--forest), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
  padding: 10px;
}
.ingredient-body { padding: 22px 24px 0; }
.ingredient-card .cat {
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--copper);
  margin-bottom: 6px;
}
.ingredient-card h3 { font-size: 19px; margin-bottom: 10px; }
.ingredient-card p { font-size: 15.5px; color: var(--text-secondary); margin: 0 0 10px; }
.evidence-tag {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 600;
  background: var(--stone);
  color: var(--text-secondary);
  border-radius: 100px;
  padding: 5px 12px;
  margin-top: 4px;
}
@media (max-width: 940px) {
  .ingredient-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .ingredient-grid { grid-template-columns: 1fr; }
}

.ingredient-intro-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 28px 32px;
  max-width: 900px;
  margin: 0 auto 44px;
  box-shadow: 0 6px 18px rgba(7,23,34,0.05);
}

/* ============ Focused formula / label image ============ */
.label-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 20px;
  box-shadow: 0 10px 26px rgba(7,23,34,0.08);
  text-align: center;
}
.label-card img {
  width: auto !important;
  height: auto !important;
  max-width: min(100%, 520px);
  max-height: 210px;
  aspect-ratio: auto !important;
  object-fit: contain;
  border-radius: 12px;
  margin: 0 auto;
}
.label-card figcaption {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 14px;
}

/* ============ Sugar/caffeine ============ */
.sugar-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 34px 36px;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 6px 18px rgba(7,23,34,0.05);
}
.sugar-stats {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 18px;
  margin: 22px 0 6px;
}
.sugar-stat {
  text-align: center;
  background: var(--stone);
  border-radius: 14px;
  padding: 16px 10px;
}
.sugar-stat .num { font-family: var(--font-head); font-size: 24px; font-weight: 700; color: var(--copper); display: block; }
.sugar-stat .lbl { font-size: 13px; color: var(--text-secondary); font-weight: 600; }
@media (max-width: 700px) {
  .sugar-stats { grid-template-columns: 1fr 1fr; }
}

/* ============ Pros & considerations ============ */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.pc-col {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 30px 32px;
  box-shadow: 0 6px 18px rgba(7,23,34,0.05);
}
.pc-col h3 { font-size: 21px; margin-bottom: 18px; }
.pc-col ul { list-style: none; padding: 0; margin: 0; }
.pc-col li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 16px;
  margin-bottom: 12px;
  color: var(--text);
}
.pc-col li svg { flex-shrink: 0; margin-top: 4px; }
@media (max-width: 860px) {
  .pros-cons { grid-template-columns: 1fr; }
}

/* ============ How to use cards ============ */
.use-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.use-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 26px 22px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(7,23,34,0.05);
}
.use-card .use-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  margin: 0 auto 14px;
}
.use-card h3 { font-size: 17.5px; }
.use-card p { font-size: 15px; color: var(--text-secondary); margin: 0; }
@media (max-width: 860px) {
  .use-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .use-grid { grid-template-columns: 1fr; }
}

.storage-box {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 34px;
}
.storage-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 24px;
  flex: 1 1 260px;
  max-width: 340px;
}
.storage-item h4 { font-family: var(--font-body); font-size: 15.5px; font-weight: 700; color: var(--forest); margin: 0 0 8px; }
.storage-item p { font-size: 15px; color: var(--text-secondary); margin: 0; }

/* ============ Who may suit ============ */
.suit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 32px;
}
.suit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 24px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 16.5px;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(7,23,34,0.05);
}
@media (max-width: 940px) {
  .suit-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .suit-grid { grid-template-columns: 1fr; }
}

.caution-box {
  background: var(--caution-bg);
  border: 1px solid #EBD9A0;
  border-radius: 16px;
  padding: 22px 26px;
  font-size: 16px;
  max-width: 900px;
  margin: 0 auto;
}

/* ============ Pricing ============ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: end;
  max-width: 1040px;
  margin: 0 auto;
}
.price-card {
  background: var(--white);
  border: 2px solid #CF2B30;
  border-radius: 18px;
  padding: 24px 20px 26px;
  text-align: center;
  box-shadow: 0 10px 26px rgba(91,8,11,0.09);
  position: relative;
  transition: transform 0.2s ease;
}
.price-card.featured {
  background: linear-gradient(180deg, #BE171D 0%, #8F0B10 100%);
  border: 3px solid var(--gold);
  color: var(--white);
  box-shadow: 0 20px 44px rgba(91,8,11,0.24);
  transform: scale(1.025);
  z-index: 2;
}
@media (min-width: 941px) {
  .price-card.featured { padding-top: 34px; }
}
.ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #FFE16A, var(--gold));
  color: var(--navy);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 8px 20px;
  border-radius: 100px;
  box-shadow: 0 6px 14px rgba(242,201,76,0.35);
  white-space: nowrap;
}
.price-card .plan-label {
  font-size: 13.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--copper);
  margin-bottom: 10px;
}
.price-card .bottle-img {
  width: auto !important;
  height: auto !important;
  max-width: 112px;
  max-height: 112px;
  aspect-ratio: auto !important;
  object-fit: contain;
  margin: 0 auto 12px;
}
.price-card.featured .bottle-img {
  width: auto !important;
  height: auto !important;
  max-width: 128px;
  max-height: 128px;
}
.price-card .supply {
  font-size: 14.5px;
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 6px;
}
.price-card .per-bottle {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 700;
  color: var(--navy);
}
.price-card .per-bottle span { font-size: 16px; font-weight: 600; color: var(--text-secondary); }
.price-card .total-line {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}
.price-card .save-line {
  display: inline-block;
  background: var(--success-bg);
  color: var(--forest);
  font-weight: 700;
  font-size: 14px;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.price-card .shipping-line {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}
.price-card .btn {
  width: 100%;
  min-height: 46px;
  padding: 11px 16px;
  font-size: 16px;
}
.price-card .guarantee-mini {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 14px;
}
.price-card.featured .plan-label,
.price-card.featured .supply,
.price-card.featured .per-bottle,
.price-card.featured .per-bottle span,
.price-card.featured .total-line,
.price-card.featured .guarantee-mini {
  color: var(--white);
}
.price-card.featured .save-line {
  background: var(--gold);
  color: var(--navy);
}
.price-card.featured .btn-primary {
  background: linear-gradient(180deg, #FFE24F, #F1B900);
  color: var(--navy);
  box-shadow: 0 8px 18px rgba(25,7,8,0.25);
}
@media (max-width: 760px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .price-card.featured { transform: none; order: -1; }
}

@media (min-width: 761px) and (max-width: 940px) {
  .pricing-grid {
    gap: 14px;
  }
  .price-card {
    padding-left: 14px;
    padding-right: 14px;
  }
  .price-card.featured {
    transform: none;
    padding-top: 34px;
  }
}

.pricing-note {
  text-align: center;
  font-size: 14.5px;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 34px auto 0;
}

/* ============ Guarantee ============ */
.guarantee-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  align-items: center;
}
.guarantee-grid img {
  width: auto !important;
  height: auto !important;
  max-width: 165px;
  max-height: 165px;
  aspect-ratio: auto !important;
  object-fit: contain;
  margin: 0 auto;
}
.guarantee-checks { list-style: none; padding: 0; margin: 20px 0 26px; }
.guarantee-checks li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 600;
  margin-bottom: 12px;
}
@media (max-width: 860px) {
  .guarantee-grid { grid-template-columns: 1fr; text-align: center; }
  .guarantee-checks li { text-align: left; }
}

/* ============ Customer expectations ============ */
.expectation-box {
  background: var(--forest);
  color: var(--white);
  border-radius: var(--radius-card);
  padding: 44px 48px;
  max-width: 900px;
  margin: 0 auto;
}
.expectation-box p { color: rgba(255,255,255,0.9); }

/* ============ Where to buy ============ */
.buy-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.buy-step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 6px 18px rgba(7,23,34,0.05);
}
@media (max-width: 860px) {
  .buy-steps { grid-template-columns: 1fr; }
}

/* ============ FAQ ============ */
.faq-list { max-width: var(--reading-width); margin: 0 auto; }
details.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
details.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after {
  content: "+";
  font-size: 26px;
  font-weight: 400;
  color: var(--copper);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
details.faq-item[open] summary::after { content: "–"; }
details.faq-item p {
  margin-top: 14px;
  font-size: 16.5px;
  color: var(--text-secondary);
}

/* ============ 30 seconds cards ============ */
.thirty-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.thirty-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 16px;
  text-align: center;
  box-shadow: 0 6px 16px rgba(7,23,34,0.05);
}
.thirty-card .lbl {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}
.thirty-card .txt { font-size: 15px; font-weight: 600; }
@media (max-width: 940px) {
  .thirty-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .thirty-grid { grid-template-columns: 1fr 1fr; }
}

/* ============ Conclusion / final CTA ============ */
.conclusion-box {
  max-width: var(--reading-width);
  margin: 0 auto;
}
.final-cta {
  background: linear-gradient(135deg, var(--navy), var(--forest));
  color: var(--white);
  border-radius: 28px;
  padding: 56px 48px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.final-cta h2, .final-cta p { color: var(--white); }
.final-cta p { color: rgba(255,255,255,0.85); max-width: 560px; margin-left: auto; margin-right: auto; }

/* ============ References ============ */
.ref-list {
  max-width: var(--reading-width);
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
.ref-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15.5px;
  color: var(--text-secondary);
}
.ref-list a { color: var(--forest); font-weight: 600; text-decoration: underline; }

/* ============ Affiliate disclosure strip ============ */
.disclosure-strip {
  background: var(--sage);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  font-size: 14.5px;
  color: var(--text-secondary);
  text-align: center;
}

/* ============ Footer ============ */
footer.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.8);
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
.footer-col h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 16px;
}
.footer-col p { color: rgba(255,255,255,0.65); font-size: 15px; }
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  margin-bottom: 10px;
}
.footer-col a:hover { color: var(--gold); }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-logo .logo-mark { border-color: var(--gold); }
.footer-logo .name { color: var(--white); font-family: var(--font-head); font-size: 20px; font-weight: 600; }

.footer-legal-strip {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 26px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}
.footer-legal-strip p { color: rgba(255,255,255,0.55); margin-bottom: 10px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.5);
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ============ Responsive section spacing ============ */
@media (max-width: 780px) {
  section { padding: var(--space-section-mobile) 0; }
  h1 { font-size: 40px; }
  h2 { font-size: 30px; }
  .two-col, .guarantee-grid { gap: 30px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
