/* ==========================================================================
   MemoHoney® — Unique Design System (v1.0)
   Warm honey-amber + charcoal, editorial + modern micro-interactions
   Bootstrap 5 override + self-contained (no Mobirise dependency)
   ========================================================================== */

/* ---------- ROOT TOKENS ---------- */
:root {
  --honey-50:  #FFF9EC;
  --honey-100: #FFF0CC;
  --honey-200: #FFE199;
  --honey-300: #FFCB61;
  --honey-400: #F5B234;
  --honey-500: #E09A18;    /* primary */
  --honey-600: #C88318;    /* deep primary */
  --honey-700: #A0670F;
  --honey-800: #6F470A;

  --ink-900: #1B1611;      /* deep charcoal */
  --ink-700: #34291F;
  --ink-500: #5A4A3B;
  --ink-300: #A0917E;
  --ink-100: #EFE7DA;

  --cream:   #FBF6EC;
  --white:   #FFFFFF;
  --success: #2E7D32;
  --danger:  #C62828;

  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --shadow-sm: 0 2px 8px rgba(27, 22, 17, 0.06);
  --shadow:    0 8px 28px rgba(27, 22, 17, 0.10);
  --shadow-lg: 0 22px 60px rgba(27, 22, 17, 0.16);
  --shadow-honey: 0 12px 34px rgba(200, 131, 24, 0.28);

  --gradient-honey: linear-gradient(135deg, #F5B234 0%, #C88318 100%);
  --gradient-honey-soft: linear-gradient(135deg, #FFF0CC 0%, #FFE199 100%);
  --gradient-ink: linear-gradient(180deg, #34291F 0%, #1B1611 100%);
}

/* ---------- BASE ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--cream);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink-900);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.9rem); }
h4 { font-size: 1.15rem; font-weight: 600; }
p  { color: var(--ink-700); }
a  { color: var(--honey-600); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--honey-700); text-decoration: underline; }

/* ---------- ALWAYS-CENTRED IMAGERY (standing rule) ---------- */
section img,
.section img,
main img.center,
img.mx-auto {
  display: block !important;
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: 100%;
  height: auto;
}

/* ---------- TOPBAR PROMO ---------- */
.topbar {
  background: var(--gradient-ink);
  color: var(--honey-100);
  text-align: center;
  font-size: .82rem;
  padding: .5rem 1rem;
  letter-spacing: .02em;
}
.topbar strong { color: var(--honey-300); }

/* ---------- NAV ---------- */
.navbar-mh {
  background: rgba(251, 246, 236, 0.92);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid rgba(27, 22, 17, 0.06);
  padding: .8rem 0;
  transition: box-shadow .3s ease;
}
.navbar-mh.scrolled { box-shadow: var(--shadow-sm); }
.navbar-mh .navbar-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--ink-900);
  letter-spacing: -0.02em;
}
.navbar-mh .navbar-brand span { color: var(--honey-600); }
.navbar-mh .nav-link {
  color: var(--ink-700);
  font-weight: 500;
  font-size: .95rem;
  padding: .5rem .9rem !important;
  position: relative;
}
.navbar-mh .nav-link::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 6px;
  width: 0;
  height: 2px;
  background: var(--honey-500);
  transition: all .25s ease;
  transform: translateX(-50%);
}
.navbar-mh .nav-link:hover::after { width: 26px; }
.navbar-mh .nav-link:hover { color: var(--honey-700); }

/* ---------- BUTTONS ---------- */
.btn-honey {
  background: var(--gradient-honey);
  color: var(--white) !important;
  font-weight: 600;
  padding: .85rem 1.8rem;
  border-radius: 999px;
  border: none;
  box-shadow: var(--shadow-honey);
  letter-spacing: .01em;
  transition: transform .18s ease, box-shadow .18s ease;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  text-decoration: none !important;
}
.btn-honey:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(200, 131, 24, 0.38);
  color: var(--white);
}
.btn-honey.btn-lg { padding: 1.05rem 2.2rem; font-size: 1.05rem; }
.btn-outline-honey {
  border: 2px solid var(--honey-500);
  color: var(--honey-700) !important;
  background: transparent;
  font-weight: 600;
  padding: .8rem 1.6rem;
  border-radius: 999px;
  transition: all .2s ease;
  text-decoration: none !important;
}
.btn-outline-honey:hover {
  background: var(--honey-500);
  color: var(--white) !important;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: clamp(3rem, 7vw, 6rem) 0 clamp(2.5rem, 5vw, 4.5rem);
  background: radial-gradient(1200px 500px at 90% -10%, var(--honey-200) 0%, transparent 60%),
              radial-gradient(900px 400px at -5% 30%, var(--honey-100) 0%, transparent 60%),
              var(--cream);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  background: var(--gradient-honey-soft);
  border-radius: 50%;
  filter: blur(80px);
  opacity: .55;
  z-index: 0;
}
.hero .container { position: relative; z-index: 2; }
.eyebrow {
  display: inline-block;
  background: var(--honey-100);
  color: var(--honey-700);
  font-size: .78rem;
  font-weight: 600;
  padding: .35rem .9rem;
  border-radius: 999px;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.hero h1 { margin-bottom: 1.1rem; }
.hero h1 .accent {
  background: var(--gradient-honey);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero .lead {
  font-size: 1.1rem;
  color: var(--ink-500);
  max-width: 560px;
}

/* ---------- METRIC / QUICK FACTS ---------- */
.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.8rem 0;
}
.metric {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease;
}
.metric:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.metric .num {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--honey-600);
  line-height: 1;
}
.metric .lbl {
  font-size: .78rem;
  color: var(--ink-500);
  margin-top: .3rem;
  letter-spacing: .02em;
}

/* ---------- HERO PRODUCT ---------- */
.hero-product {
  position: relative;
  text-align: center;
}
.hero-product img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 30px 40px rgba(200, 131, 24, 0.28));
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.hero-badge {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius);
  padding: .6rem 1rem;
  box-shadow: var(--shadow);
  font-size: .8rem;
  font-weight: 600;
  color: var(--ink-900);
}
.hero-badge .val { display:block; color: var(--honey-600); font-family: var(--font-display); font-size:1.1rem; }
.hero-badge.hb-1 { top: 10%; left: -10px; }
.hero-badge.hb-2 { bottom: 22%; right: -6px; }

/* ---------- SECTION FRAME ---------- */
section { padding: clamp(3rem, 6vw, 5.5rem) 0; }
.section-cream { background: var(--cream); }
.section-white { background: var(--white); }
.section-ink { background: var(--gradient-ink); color: var(--honey-100); }
.section-ink h2, .section-ink h3, .section-ink h4 { color: var(--white); }
.section-ink p { color: var(--ink-100); }

.section-tag {
  display: inline-block;
  color: var(--honey-600);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: .8rem;
}
.section-title { margin-bottom: 1rem; }
.section-sub {
  color: var(--ink-500);
  max-width: 680px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

/* ---------- FEATURE CARDS ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.6rem;
  text-align: center;
  border: 1px solid var(--ink-100);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: var(--gradient-honey);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--honey-200); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-card img {
  width: 74px; height: 74px;
  object-fit: contain;
  margin: 0 auto 1rem;
}
.feature-card h4 { font-family: var(--font-display); color: var(--ink-900); margin-bottom:.5rem; }
.feature-card p { font-size: .93rem; color: var(--ink-500); margin: 0; }

/* ---------- HOW IT WORKS ---------- */
.hiw-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.2rem;
  margin-top: 2.5rem;
}
.hiw-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
  border: 1px solid var(--ink-100);
  transition: all .25s ease;
  position: relative;
}
.hiw-card:hover { border-color: var(--honey-300); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.hiw-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--gradient-honey-soft);
  color: var(--honey-700);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.hiw-card h4 { color: var(--ink-900); font-size: 1.05rem; margin-bottom:.4rem; }
.hiw-card p  { font-size: .9rem; margin: 0; color: var(--ink-500); }

/* ---------- INGREDIENTS ---------- */
.ing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2rem;
}
.ing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  border: 1px solid var(--ink-100);
  position: relative;
  transition: all .25s ease;
}
.ing-card:hover { box-shadow: var(--shadow); border-color: var(--honey-200); transform: translateY(-4px); }
.ing-num {
  position: absolute;
  top: -14px; left: 20px;
  width: 34px; height: 34px;
  background: var(--gradient-honey);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  box-shadow: var(--shadow-honey);
}
.ing-card h4 { font-family: var(--font-display); font-size: 1.25rem; color: var(--ink-900); margin-top:.4rem; }
.ing-card p  { color: var(--ink-500); font-size: .95rem; }
.ing-card a  { color: var(--honey-600); font-weight: 500; font-size: .88rem; }

/* ---------- REVIEWS ---------- */
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.4rem;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  border: 1px solid var(--ink-100);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  gap: 1rem;
}
.review-head {
  display: flex; align-items: center; gap: 1rem;
}
.review-head img {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--honey-300);
}
.review-name { font-weight: 700; color: var(--ink-900); font-size: 1rem; }
.review-meta { font-size: .8rem; color: var(--ink-500); }
.review-stars { color: var(--honey-500); font-size: 1rem; letter-spacing: 2px; }
.review-body { font-style: italic; color: var(--ink-700); font-size: .96rem; margin: 0; }

/* ---------- PRICING ---------- */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.6rem;
  align-items: stretch;
}
.price-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem;
  text-align: center;
  border: 2px solid var(--ink-100);
  position: relative;
  transition: all .25s ease;
  display: flex; flex-direction: column;
}
.price-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.price-card.featured {
  border-color: var(--honey-500);
  background: linear-gradient(180deg, var(--honey-50) 0%, var(--white) 60%);
  transform: scale(1.03);
}
.price-card.featured:hover { transform: scale(1.03) translateY(-5px); }
.price-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-honey);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .05em;
  padding: .4rem 1rem;
  border-radius: 999px;
  text-transform: uppercase;
  box-shadow: var(--shadow-honey);
}
.price-card h3 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: .3rem; }
.price-card .subtitle { color: var(--ink-500); font-size: .9rem; }
.price-card img { max-width: 220px; margin: 1.2rem auto; }
.price-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--ink-900);
  line-height: 1;
}
.price-num small { font-size: .95rem; color: var(--ink-500); font-family: var(--font-body); font-weight: 400; }
.price-save { color: var(--success); font-weight: 600; font-size: .92rem; margin: .5rem 0 1rem; }
.price-card ul.perks {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2rem;
  font-size: .88rem;
  text-align: left;
}
.price-card ul.perks li {
  padding: .3rem 0;
  color: var(--ink-500);
  display: flex; align-items: center; gap: .5rem;
}
.price-card ul.perks li::before { content:'✓'; color: var(--success); font-weight: 700; }
.cards-img { max-width: 200px; margin: .8rem auto 0; }

/* ---------- FAQ ---------- */
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--ink-100);
  margin-bottom: .8rem;
  overflow: hidden;
  transition: box-shadow .2s ease;
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-item summary {
  padding: 1.1rem 1.4rem;
  font-weight: 600;
  color: var(--ink-900);
  cursor: pointer;
  list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  color: var(--honey-600);
  font-size: 1.4rem;
  font-weight: 400;
  transition: transform .2s ease;
}
.faq-item[open] summary::after { content: '−'; }
.faq-body {
  padding: 0 1.4rem 1.2rem;
  color: var(--ink-500);
  font-size: .95rem;
  line-height: 1.7;
}

/* ---------- CTA STRIPE ---------- */
.cta-stripe {
  background: var(--gradient-honey);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.4rem 2rem;
  text-align: center;
  margin: 1rem 0;
  box-shadow: var(--shadow-honey);
}
.cta-stripe h3 { color: var(--white); margin-bottom: .7rem; }
.cta-stripe .btn-honey {
  background: var(--white);
  color: var(--honey-700) !important;
  box-shadow: 0 8px 20px rgba(0,0,0,.15);
}
.cta-stripe .btn-honey:hover { background: var(--ink-900); color: var(--honey-200) !important; }

/* ---------- TRUST STRIP ---------- */
.trust-strip {
  background: var(--white);
  padding: 1.4rem 1rem;
  border-top: 1px solid var(--ink-100);
  border-bottom: 1px solid var(--ink-100);
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 2rem;
  font-size: .82rem; color: var(--ink-500); letter-spacing: .04em;
  text-transform: uppercase; font-weight: 600;
}
.trust-strip span { display: flex; align-items: center; gap: .4rem; }
.trust-strip span::before { content: '✓'; color: var(--honey-600); }

/* ---------- FOOTER ---------- */
.mh-footer {
  background: var(--gradient-ink);
  color: var(--ink-100);
  padding: 3.5rem 0 1.5rem;
}
.mh-footer .brand {
  font-family: var(--font-display);
  color: var(--white);
  font-weight: 800;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.mh-footer h5 {
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.mh-footer a {
  color: var(--ink-100);
  display: block;
  padding: .25rem 0;
  font-size: .92rem;
}
.mh-footer a:hover { color: var(--honey-300); text-decoration: none; }
.mh-footer p { color: var(--ink-300); font-size: .85rem; }
.mh-footer .disclaimer {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.4rem;
  margin-top: 2rem;
  font-size: .78rem;
  color: var(--ink-300);
  line-height: 1.6;
}
.mh-footer .copy {
  text-align: center;
  font-size: .8rem;
  color: var(--ink-300);
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.06);
  margin-top: 1.2rem;
}

/* ---------- STICKY MOBILE CTA ---------- */
.sticky-cta {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: var(--white);
  border-top: 1px solid var(--ink-100);
  padding: .7rem 1rem calc(.7rem + env(safe-area-inset-bottom));
  z-index: 999;
  box-shadow: 0 -6px 20px rgba(27, 22, 17, 0.10);
}
.sticky-cta .btn-honey { width: 100%; justify-content: center; }
.sticky-cta .price-info {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .82rem; color: var(--ink-500); margin-bottom: .4rem;
}
.sticky-cta .price-info strong { color: var(--honey-600); font-size: 1rem; }

/* ---------- BLOG ---------- */
.blog-hero {
  background: var(--gradient-honey-soft);
  padding: 4rem 0 3rem;
  text-align: center;
}
.blog-hero h1 { color: var(--ink-900); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.6rem;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--ink-100);
  transition: all .25s ease;
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.blog-card .cat {
  display: inline-block;
  background: var(--honey-100);
  color: var(--honey-700);
  padding: .25rem .7rem;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: .8rem;
}
.blog-card .cat.review { background: #E7F2E9; color: var(--success); }
.blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-card h3 { font-size: 1.15rem; margin-bottom: .6rem; line-height: 1.35; color: var(--ink-900); }
.blog-card h3 a { color: inherit; }
.blog-card p { font-size: .9rem; color: var(--ink-500); flex: 1; margin-bottom: .8rem; }
.blog-card .meta { font-size: .78rem; color: var(--ink-300); }

/* ---------- ARTICLE / POST ---------- */
.article-header {
  padding: 3rem 0 2rem;
  background: var(--cream);
  text-align: center;
}
.article-header .cat {
  display: inline-block;
  background: var(--honey-100);
  color: var(--honey-700);
  padding: .3rem .9rem;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.article-header h1 { max-width: 820px; margin: 0 auto 1rem; }
.article-header .meta { color: var(--ink-500); font-size: .9rem; }
.article-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 2.5rem 1.2rem 3rem;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--ink-700);
}
.article-body h2 {
  font-size: 1.6rem;
  margin: 2.2rem 0 1rem;
  color: var(--ink-900);
}
.article-body h3 { font-size: 1.25rem; margin: 1.6rem 0 .8rem; }
.article-body p { margin-bottom: 1.15rem; }
.article-body ul, .article-body ol { padding-left: 1.4rem; margin-bottom: 1.15rem; }
.article-body li { margin-bottom: .4rem; }
.article-body a { color: var(--honey-700); font-weight: 500; }
.article-body blockquote {
  border-left: 4px solid var(--honey-500);
  padding: .8rem 1.2rem;
  background: var(--cream);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.6rem 0;
  color: var(--ink-700);
  font-style: italic;
}
.article-cta {
  background: var(--gradient-honey-soft);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  margin: 2rem 0;
  text-align: center;
}
.related-posts {
  background: var(--cream);
  padding: 3rem 0;
  border-top: 1px solid var(--ink-100);
}

/* ---------- FLOAT / MICRO ---------- */
.honeycomb-pattern {
  position: absolute;
  inset: 0;
  opacity: .06;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 30% 30%, var(--honey-600) 1px, transparent 2px),
    radial-gradient(circle at 70% 70%, var(--honey-600) 1px, transparent 2px);
  background-size: 40px 40px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 991px) {
  .navbar-mh .navbar-collapse {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1rem;
    box-shadow: var(--shadow);
    margin-top: .6rem;
  }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-5px); }
  .hero-badge.hb-1 { top: 4%; left: 6px; }
  .hero-badge.hb-2 { bottom: 6%; right: 6px; }
}
@media (max-width: 767px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.65rem; }
  .metrics { grid-template-columns: repeat(3, 1fr); gap: .6rem; }
  .metric .num { font-size: 1.35rem; }
  .sticky-cta { display: block; }
  body.has-sticky-cta { padding-bottom: 110px; }
  .hero-badge { display: none; }
  section { padding: 3rem 0; }
  .price-card { padding: 1.6rem 1.2rem; }
}
@media (max-width: 480px) {
  .btn-honey { padding: .75rem 1.4rem; font-size: .95rem; }
  .btn-honey.btn-lg { padding: .95rem 1.6rem; font-size: 1rem; }
}

/* ---------- CHROME MOBILE / APPLE POLISH ---------- */
@supports (-webkit-touch-callout: none) {
  .btn-honey { -webkit-tap-highlight-color: transparent; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .hero-product img { animation: none; }
}

/* ---------- PRINT ---------- */
@media print {
  .navbar-mh, .sticky-cta, .topbar, .cta-stripe { display: none !important; }
  body { background: white; color: black; }
}

/* ==================================================
   BLOG INDEX + POST PAGES
   ================================================== */

.mh-article { background: var(--white); }

.article-header {
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
  padding: 3rem 0 2rem;
  border-bottom: 1px solid var(--ink-100);
}
.article-header h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--ink-900);
  margin: .5rem 0 1rem;
  line-height: 1.2;
  max-width: 820px;
}
.breadcrumb-nav {
  font-size: .85rem;
  color: var(--ink-500);
  margin-bottom: 1rem;
}
.breadcrumb-nav a {
  color: var(--ink-500);
  text-decoration: none;
}
.breadcrumb-nav a:hover { color: var(--honey-600); }
.breadcrumb-nav span { color: var(--ink-700); font-weight: 500; }

.article-meta {
  font-size: .9rem;
  color: var(--ink-500);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .1rem;
}
.article-meta strong { color: var(--ink-700); }

.article-body {
  padding: 2.5rem 0 3rem;
}
.article-body .container {
  max-width: 780px;
}
.article-body p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink-800);
  margin-bottom: 1.15rem;
}
.article-body h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ink-900);
  margin: 2.2rem 0 1rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--honey-200);
}
.article-body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--ink-900);
  margin: 1.6rem 0 .8rem;
}
.article-body ul, .article-body ol {
  margin: .5rem 0 1.25rem;
  padding-left: 1.5rem;
}
.article-body li {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--ink-800);
  margin-bottom: .5rem;
}
.article-body a {
  color: var(--honey-700);
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
  transition: color .2s;
}
.article-body a:hover { color: var(--honey-800); }
.article-body strong { color: var(--ink-900); }
.article-body table {
  margin: 1.2rem 0;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius);
  overflow: hidden;
}
.article-body img {
  display: block !important;
  margin: 1.5rem auto !important;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
}
.article-cta h3 {
  font-family: var(--font-display);
  color: var(--honey-800);
  margin-bottom: .8rem;
}
.article-cta p { color: var(--ink-800); }
.article-cta .btn { margin: .8rem auto 1rem; }
.small-print {
  font-size: .8rem;
  color: var(--ink-500);
  margin-top: .8rem;
  line-height: 1.5;
}

/* ---------- CATEGORY TAGS ---------- */
.cat {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: .28rem .7rem;
  border-radius: 999px;
  margin-bottom: .8rem;
  background: var(--honey-100);
  color: var(--honey-800);
}
.cat-review { background: #FDECEF; color: #8B2545; }
.cat-ingredients { background: #FCEBD2; color: #8A5215; }
.cat-science { background: #E5EEFA; color: #22456F; }
.cat-cognitive { background: #E7F3E9; color: #29572D; }
.cat-lifestyle { background: #F3E9F7; color: #5A2D6F; }
.cat-literacy { background: #FCF3D9; color: #7A5C10; }
.cat-foods { background: #E8F5EF; color: #1F5B41; }
.cat-guides { background: #FEEEE0; color: #8A3D0F; }

/* ---------- BLOG GRID + CARDS ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  height: 100%;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--honey-300);
  color: inherit;
}
.blog-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--ink-900);
  margin: .3rem 0 .6rem;
  line-height: 1.35;
}
.blog-card p {
  font-size: .92rem;
  color: var(--ink-600);
  line-height: 1.55;
  margin-bottom: 1rem;
  flex-grow: 1;
}
.blog-card .read-more {
  font-size: .88rem;
  font-weight: 600;
  color: var(--honey-700);
  margin-top: auto;
}
.blog-card:hover .read-more { color: var(--honey-800); }
.blog-card.compact { padding: 1.2rem; }
.blog-card.compact h3 { font-size: 1rem; }

/* ---------- BLOG INDEX PAGE ---------- */
.blog-index-hero {
  background: linear-gradient(135deg, var(--cream) 0%, #FDF3DF 100%);
  padding: 4rem 0 3rem;
  border-bottom: 1px solid var(--honey-200);
  text-align: center;
}
.blog-index-hero .eyebrow {
  display: inline-block;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--honey-700);
  margin-bottom: 1rem;
}
.blog-index-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--ink-900);
  margin-bottom: 1.2rem;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.15;
}
.blog-index-hero .lead {
  font-size: 1.05rem;
  color: var(--ink-700);
  max-width: 680px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}
.blog-index-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 620px;
  margin: 2rem auto 0;
}
.blog-index-stats div {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.blog-index-stats strong {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--honey-700);
  line-height: 1;
}
.blog-index-stats span {
  font-size: .8rem;
  color: var(--ink-500);
  margin-top: .3rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.blog-category-section {
  padding: 3rem 0;
  border-bottom: 1px solid var(--ink-100);
}
.blog-category-section:nth-child(even) { background: var(--cream); }
.cat-header {
  text-align: center;
  margin-bottom: 2rem;
}
.cat-header h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--ink-900);
  margin: .5rem 0;
}
.cat-header p {
  color: var(--ink-600);
  max-width: 620px;
  margin: 0 auto;
  font-size: .98rem;
}

.section-heading {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ink-900);
  text-align: center;
  margin-bottom: 2rem;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 767px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .blog-index-stats {
    grid-template-columns: repeat(2, 1fr);
    max-width: 340px;
  }
  .article-header { padding: 2rem 0 1.5rem; }
  .article-body { padding: 2rem 0; }
  .article-body p, .article-body li { font-size: 1rem; }
  .cat-header h2 { font-size: 1.5rem; }
}
