/* ==========================================================================
   MemoHoney Capsules Reviews — Wellness Journal design system
   Palette: deep burgundy + warm oat cream + antique gold + sage + warm ink
   Type:    DM Serif Display (headlines) + Public Sans (body)
   Feel:    Premium wellness journal — an editorial magazine on cognitive
            circulation. Elegant, warm, sophisticated. Print-magazine roots.
   ========================================================================== */

:root {
  --burgundy:      #722F37;
  --burgundy-dk:   #4E1E24;
  --burgundy-lt:   #F0DDE0;
  --burgundy-hi:   #A0525A;

  --gold:          #B8874A;
  --gold-dk:       #8A6435;
  --gold-lt:       #F0E4D0;
  --gold-hi:       #D4A669;

  --sage:          #7A8471;
  --sage-lt:       #DDE0D6;

  --oat:           #F5EFE2;
  --oat-2:         #EBE4D2;
  --oat-3:         #DDD3BC;
  --paper:         #FFFDF8;
  --hair:          #E8DFC9;
  --line:          #D9CFB6;

  --ink:           #2A1F1D;
  --body:          #3C302C;
  --muted:         #7A6E68;
  --muted-2:       #A69A93;

  --bs-body-font-family: 'Public Sans', system-ui, -apple-system, sans-serif;
  --bs-body-color: var(--body);
  --bs-body-bg: var(--oat);
  --bs-link-color: var(--burgundy);

  --r-sm: 3px;
  --r:    7px;
  --r-lg: 12px;
  --shadow-sm: 0 1px 3px rgba(42,31,29,.06);
  --shadow:    0 6px 22px rgba(78,30,36,.09);
  --shadow-lg: 0 20px 50px rgba(78,30,36,.14);
}

* { box-sizing: border-box; }

body {
  font-family: 'Public Sans', system-ui, sans-serif;
  color: var(--body);
  background: var(--oat);
  font-size: 1.02rem;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  font-feature-settings: "ss01";
}

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

/* ---------- Type ---------- */
h1, h2, h3, h4, h5 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -.012em;
}
h1 { font-size: clamp(2.4rem, 5.8vw, 4.1rem); letter-spacing: -.015em; }
h2 { font-size: clamp(1.85rem, 3.8vw, 2.75rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }
h4 {
  font-size: 1.18rem;
  font-family: 'Public Sans', sans-serif;
  font-weight: 700;
  letter-spacing: -.005em;
}
p  { margin-bottom: 1.05rem; }

/* Eyebrow — italic serif with rule */
.eyebrow {
  display: inline-flex; align-items: center; gap: .8rem;
  font-family: 'DM Serif Display', serif;
  font-style: italic; font-size: 1rem; font-weight: 400;
  color: var(--burgundy); margin-bottom: 1.1rem;
  letter-spacing: 0;
}
.eyebrow::before {
  content: ""; width: 34px; height: 1px; background: var(--gold); display: inline-block;
}
.eyebrow-gold { color: var(--gold-dk); }
.eyebrow-gold::before { background: var(--gold); }
.eyebrow-sage { color: var(--sage); }
.eyebrow-sage::before { background: var(--sage); }
.eyebrow-light { color: var(--gold-hi); }
.eyebrow-light::before { background: var(--gold-hi); }

.section-head { max-width: 800px; margin: 0 auto 3.4rem; }
.section-head.center { text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head .sub {
  color: var(--muted); font-size: 1.08rem; margin-top: 1rem;
  font-family: 'Public Sans', sans-serif;
}

/* ---------- Sections ---------- */
.sec { padding: clamp(3.6rem, 7vw, 6rem) 0; }
.sec-oat-2 { background: var(--oat-2); }
.sec-burg { background: var(--burgundy); color: #E8D6D8; }
.sec-burg h2, .sec-burg h3, .sec-burg h4 { color: var(--paper); }
.sec-burg a { color: var(--gold-hi); }
.sec-paper { background: var(--paper); }

/* ---------- Disclosure — parchment strip at top ---------- */
.disclosure {
  background: var(--burgundy-dk); color: #C7B4B6; font-size: .77rem; padding: .55rem 0;
  border-bottom: 2px solid var(--gold);
}
.disclosure .container { display: flex; flex-wrap: wrap; gap: .3rem 1.8rem; justify-content: center; }
.disclosure b { color: var(--gold-hi); font-weight: 600; letter-spacing: .04em; }

/* ---------- Nav ---------- */
.navbar {
  background: rgba(245,239,226,.96); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line); padding: .8rem 0;
}
.navbar .navbar-brand {
  font-family: 'DM Serif Display', serif; font-weight: 400; font-size: 1.55rem;
  color: var(--burgundy); letter-spacing: -.01em;
}
.navbar .navbar-brand em { color: var(--gold-dk); font-style: italic; font-weight: 400; }
.navbar .nav-link { font-size: .89rem; font-weight: 500; color: var(--body); padding: .5rem .8rem !important; }
.navbar .nav-link:hover, .navbar .nav-link:focus { color: var(--burgundy); }
.navbar-toggler { border-color: var(--line); border-radius: var(--r-sm); padding: .38rem .6rem; }
.navbar-toggler:focus { box-shadow: 0 0 0 3px rgba(184,135,74,.3); }

/* ---------- Buttons ---------- */
.btn {
  font-family: 'Public Sans', sans-serif; font-weight: 600;
  border-radius: 100px; padding: .82rem 1.7rem;
  letter-spacing: .003em;
  transition: transform .13s ease, background .13s ease, border-color .13s ease, box-shadow .13s ease;
}
.btn-burg {
  background: var(--burgundy); border: 1.5px solid var(--burgundy); color: #fff;
  box-shadow: 0 3px 12px rgba(114,47,55,.22);
}
.btn-burg:hover, .btn-burg:focus {
  background: var(--burgundy-dk); border-color: var(--burgundy-dk); color: #fff;
  transform: translateY(-2px); box-shadow: 0 8px 20px rgba(78,30,36,.32);
}
.btn-gold { background: var(--gold); border: 1.5px solid var(--gold); color: var(--ink); }
.btn-gold:hover, .btn-gold:focus { background: var(--gold-dk); border-color: var(--gold-dk); color: #fff; transform: translateY(-2px); }
.btn-outline-burg { background: transparent; border: 1.5px solid var(--burgundy); color: var(--burgundy); }
.btn-outline-burg:hover, .btn-outline-burg:focus { background: var(--burgundy); color: #fff; }
.btn-ghost-light { background: transparent; border: 1.5px solid rgba(255,255,255,.4); color: #fff; }
.btn-ghost-light:hover, .btn-ghost-light:focus { background: #fff; color: var(--burgundy); border-color: #fff; }
.btn-xl { padding: 1.02rem 2.3rem; font-size: 1.02rem; }

/* ---------- HERO — cream with gold rules ---------- */
.hero {
  background: var(--oat);
  padding: clamp(2rem, 5vw, 3.5rem) 0 clamp(3rem, 6vw, 5rem);
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--hair);
}
.hero::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--burgundy) 0%, var(--gold) 50%, var(--burgundy) 100%);
}
.hero > .container { position: relative; z-index: 2; }
.hero h1 { color: var(--ink); margin-bottom: 1rem; }
.hero h1 em {
  font-style: italic; color: var(--burgundy);
}
.hero h1 .sub {
  display: block; font-family: 'Public Sans', sans-serif; font-size: .34em; font-weight: 400;
  color: var(--muted); letter-spacing: 0; margin-top: 1rem; line-height: 1.55; font-style: normal;
}
.hero-lede { font-size: 1.08rem; color: var(--body); font-family: 'Public Sans', sans-serif; }
.hero-media { position: sticky; top: 92px; }

/* Product plate — parchment card with gold border */
.plate {
  background: var(--paper);
  border: 1px solid var(--gold);
  box-shadow: 0 24px 60px rgba(78,30,36,.13);
  border-radius: var(--r-lg); padding: 2rem 1.6rem 1.6rem;
  position: relative; text-align: center;
}
.plate::before {
  content: ""; position: absolute; top: 8px; left: 8px; right: 8px; bottom: 8px;
  border: 1px solid var(--oat-3); border-radius: 8px; pointer-events: none;
}
.plate .plate-tag {
  display: inline-block; font-family: 'DM Serif Display', serif;
  font-style: italic; font-size: .95rem; color: var(--burgundy);
  border-top: 1px solid var(--gold); border-bottom: 1px solid var(--gold);
  padding: .3rem 1.2rem; margin-bottom: 1.4rem; position: relative; z-index: 2;
}
.plate img { display: block; margin: 0 auto; max-height: 380px; width: auto; position: relative; z-index: 2; }

/* Spec strip */
.specs {
  background: var(--paper); border: 1px solid var(--hair); border-radius: var(--r);
  margin: 1.6rem 0; padding: .3rem 1.3rem;
}
.s-row {
  display: flex; gap: 1rem; padding: .68rem 0;
  border-bottom: 1px dashed var(--hair); font-size: .92rem;
}
.s-row:last-child { border-bottom: 0; }
.s-row b {
  flex: 0 0 40%; color: var(--burgundy); font-weight: 600; font-size: .74rem;
  letter-spacing: .14em; text-transform: uppercase; padding-top: 3px;
  font-family: 'Public Sans', sans-serif;
}
.s-row span { color: var(--body); font-family: 'Public Sans', sans-serif; }

.stats { display: flex; gap: 1.8rem; flex-wrap: wrap; margin: 1.5rem 0; }
.stats .s .v {
  font-family: 'DM Serif Display', serif; font-size: 2.4rem; color: var(--burgundy);
  line-height: 1; letter-spacing: -.02em;
}
.stats .s .k {
  font-size: .72rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); margin-top: .4rem; font-family: 'Public Sans', sans-serif;
}
.chips { display: flex; flex-wrap: wrap; gap: .45rem; margin-top: 1.2rem; }
.chips span {
  font-size: .76rem; font-weight: 500; background: var(--paper);
  border: 1px solid var(--line); padding: .32rem .82rem; border-radius: 100px; color: var(--body);
}

/* ---------- Signature: nitric oxide pathway diagram ---------- */
.pathway {
  background: var(--paper); border: 1px solid var(--hair);
  border-radius: var(--r-lg); padding: 2.2rem 2rem;
  position: relative;
}
.pathway::before {
  content: "PATHWAY"; position: absolute; top: 1.3rem; right: 1.5rem;
  font-family: 'Public Sans', sans-serif; font-size: .68rem; font-weight: 700;
  letter-spacing: .3em; color: var(--gold-dk);
}
.pathway h4 {
  font-family: 'DM Serif Display', serif; font-size: 1.35rem; font-weight: 400;
  color: var(--burgundy); margin-bottom: 1.8rem; letter-spacing: -.008em;
}
.pathway-flow {
  display: flex; align-items: stretch; flex-wrap: wrap; gap: 0;
  margin-bottom: 1.6rem; counter-reset: step;
}
.pathway-step {
  flex: 1 1 0; min-width: 155px; counter-increment: step; position: relative;
  padding: 1.15rem 1rem 1.15rem 1.15rem; background: var(--oat);
  border-radius: var(--r); margin-right: 1.6rem;
}
.pathway-step:last-child { margin-right: 0; }
.pathway-step::before {
  content: counter(step, upper-roman);
  position: absolute; top: .5rem; right: .8rem;
  font-family: 'DM Serif Display', serif; font-style: italic;
  color: var(--gold-dk); font-size: .95rem; opacity: .65;
}
.pathway-step::after {
  content: "→"; position: absolute; right: -1.4rem; top: 50%;
  transform: translateY(-50%);
  color: var(--gold); font-size: 1.4rem; font-weight: 400;
}
.pathway-step:last-child::after { display: none; }
.pathway-step .molecule {
  font-family: 'DM Serif Display', serif; font-size: 1.15rem;
  color: var(--burgundy); line-height: 1.2; margin-bottom: .35rem;
}
.pathway-step .role {
  font-size: .82rem; color: var(--muted); line-height: 1.5;
  font-family: 'Public Sans', sans-serif;
}
.pathway-note {
  background: var(--gold-lt); border-radius: var(--r-sm);
  padding: .95rem 1.2rem; font-size: .92rem; color: var(--burgundy-dk);
  border-left: 3px solid var(--gold);
}
.pathway-note strong { color: var(--ink); }

/* ---------- Dose ladder table ---------- */
.ladder { background: var(--paper); border: 1px solid var(--hair); border-radius: var(--r-lg); overflow: hidden; }
.ladder-row {
  display: grid; grid-template-columns: minmax(180px,1fr) minmax(140px,1fr) minmax(120px,120px);
  gap: 1.2rem; align-items: center; padding: 1rem 1.3rem;
  border-bottom: 1px solid var(--hair);
}
.ladder-row:last-child { border-bottom: 0; }
.ladder-row.head {
  background: var(--burgundy); color: #fff; font-size: .72rem;
  font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  padding-top: .8rem; padding-bottom: .8rem;
}
.ladder-row.head b { color: var(--gold-hi); }
.ladder-row .mol {
  font-family: 'DM Serif Display', serif; font-size: 1.05rem; color: var(--burgundy);
  line-height: 1.25;
}
.ladder-row .use { font-size: .88rem; color: var(--body); }
.ladder-row .grade {
  display: inline-block; font-size: .7rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; padding: .28rem .78rem; border-radius: 100px;
}
.grade-good { background: var(--sage-lt); color: #4A5140; }
.grade-mixed { background: var(--gold-lt); color: var(--gold-dk); }
.grade-weak { background: var(--burgundy-lt); color: var(--burgundy-dk); }

/* ---------- Cards ---------- */
.card-j {
  background: var(--paper); border: 1px solid var(--hair);
  border-radius: var(--r); padding: 1.75rem 1.6rem; height: 100%;
  transition: transform .17s ease, box-shadow .17s ease, border-color .17s ease;
  position: relative;
}
.card-j:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--gold); }
.card-j .n {
  font-family: 'DM Serif Display', serif; font-style: italic;
  color: var(--gold-dk); font-size: 1.7rem; line-height: 1;
  display: block; margin-bottom: .7rem;
}
.card-j h4 { margin-bottom: .5rem; font-family: 'DM Serif Display', serif; font-weight: 400; font-size: 1.2rem; }
.card-j p { color: var(--muted); font-size: .93rem; margin-bottom: 0; line-height: 1.65; }

.plain {
  background: var(--paper); border: 1px solid var(--hair); border-radius: var(--r);
  padding: 1.75rem; height: 100%;
}
.badge-card { text-align: center; }
.badge-card img { height: 70px; width: auto; object-fit: contain; margin-bottom: 1rem; }

/* ---------- Ingredient cards ---------- */
.ing {
  background: var(--paper); border: 1px solid var(--hair);
  border-radius: var(--r); padding: 1.9rem 1.7rem; height: 100%; position: relative;
}
.ing::before {
  content: ""; position: absolute; top: 0; left: 1.7rem; right: 1.7rem; height: 2px;
  background: var(--gold);
}
.ing .num {
  font-family: 'DM Serif Display', serif; font-style: italic;
  font-size: 1.05rem; color: var(--gold-dk);
  display: block; margin: .5rem 0 .4rem;
}
.ing h4 {
  font-family: 'DM Serif Display', serif; font-size: 1.28rem; font-weight: 400;
  color: var(--burgundy); margin-bottom: .25rem;
}
.ing .subtitle { font-size: .83rem; color: var(--muted); margin-bottom: .8rem; font-style: italic; }
.ing p { font-size: .93rem; color: var(--body); margin-bottom: .95rem; }
.ing .pill {
  display: inline-block; font-size: .68rem; font-weight: 700; letter-spacing: .13em;
  text-transform: uppercase; padding: .28rem .78rem; margin-bottom: 1rem;
  border-radius: 100px;
}
.pill-good { background: var(--sage-lt); color: #4A5140; }
.pill-mixed { background: var(--gold-lt); color: var(--gold-dk); }
.pill-weak { background: var(--burgundy-lt); color: var(--burgundy-dk); }

/* ---------- Notices ---------- */
.note {
  background: var(--oat-2); border-left: 3px solid var(--sage);
  padding: 1.15rem 1.4rem; font-size: .94rem; color: var(--body);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
}
.note strong { color: var(--ink); }
.note a { color: var(--burgundy); text-decoration: underline; }
.warn {
  background: var(--gold-lt); border-left: 3px solid var(--gold);
  padding: 1.15rem 1.4rem; font-size: .94rem; color: var(--burgundy-dk);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
}
.warn strong { color: var(--ink); }
.warn a { color: var(--burgundy); text-decoration: underline; }
.warn.strong { background: var(--burgundy-lt); border-left-color: var(--burgundy); }
.warn.strong strong { color: var(--burgundy-dk); }

/* Experience cards */
.exp { background: var(--paper); border: 1px solid var(--hair); border-radius: var(--r); padding: 1.7rem 1.55rem; height: 100%; position: relative; }
.exp::before {
  content: '“'; font-family: 'DM Serif Display', serif; position: absolute;
  top: .3rem; left: 1.1rem; font-size: 3.5rem; color: var(--gold); opacity: .35; line-height: 1;
}
.exp .lbl {
  display: inline-block; font-family: 'DM Serif Display', serif;
  font-style: italic; font-size: .95rem; color: var(--burgundy);
  padding-bottom: .3rem; border-bottom: 1px solid var(--gold);
  margin-bottom: .95rem; position: relative; z-index: 2;
}
.exp.critical .lbl { color: var(--muted); border-bottom-color: var(--muted-2); }
.exp h4 { font-family: 'DM Serif Display', serif; font-weight: 400; font-size: 1.1rem; margin-bottom: .45rem; position: relative; z-index: 2; }
.exp p { font-size: .92rem; color: var(--muted); margin: 0; position: relative; z-index: 2; line-height: 1.68; }

/* ---------- Pricing ---------- */
.plan {
  background: var(--paper); border: 1px solid var(--hair); border-radius: var(--r-lg);
  padding: 2.1rem 1.7rem 1.7rem; text-align: center; height: 100%; position: relative;
  transition: transform .18s ease, box-shadow .18s ease;
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.plan.best { border: 2px solid var(--burgundy); background: var(--paper); }
.plan .flag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--burgundy); color: #fff; font-family: 'DM Serif Display', serif;
  font-style: italic; font-size: .95rem; padding: .28rem 1.1rem;
  border-radius: 100px; white-space: nowrap; border: 1px solid var(--gold);
}
.plan h3 {
  font-size: 1.5rem; margin-bottom: .1rem;
  font-family: 'DM Serif Display', serif; font-weight: 400; color: var(--burgundy);
}
.plan .supply { font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 1.15rem; }
.plan img.p-img { max-height: 210px; width: auto; margin: 0 auto 1.15rem; display: block; }
.plan .price {
  font-family: 'DM Serif Display', serif; font-size: 3rem;
  line-height: 1; color: var(--ink); margin-bottom: .15rem; letter-spacing: -.02em;
}
.plan .price sup { font-size: .42em; font-weight: 400; top: -1em; margin-right: 3px; color: var(--gold-dk); }
.plan .per { font-size: .77rem; color: var(--muted); font-weight: 700; letter-spacing: .13em; text-transform: uppercase; margin-bottom: .5rem; }
.plan .total { font-size: .9rem; color: var(--body); margin-bottom: .3rem; font-weight: 500; }
.plan .ship { font-size: .88rem; font-weight: 600; color: var(--burgundy); margin-bottom: 1rem; }
.plan .ship.paid { color: var(--muted); font-weight: 500; }
.plan .pay { max-width: 180px; margin: .95rem auto 0; display: block; opacity: .65; }

/* ---------- Benefits ---------- */
.ben {
  display: flex; gap: 1.3rem; padding: 1.35rem 0;
  border-bottom: 1px solid var(--hair);
}
.ben:last-child { border-bottom: 0; }
.ben .roman {
  flex: 0 0 auto; width: 44px;
  font-family: 'DM Serif Display', serif; font-style: italic;
  color: var(--burgundy); font-size: 1.4rem; line-height: 1.2;
  border-right: 1px solid var(--gold); padding-right: .3rem;
  text-align: center;
}
.ben h4 { font-family: 'DM Serif Display', serif; font-weight: 400; font-size: 1.15rem; margin-bottom: .3rem; }
.ben p { font-size: .93rem; color: var(--muted); margin: 0; line-height: 1.66; }

/* ---------- Guarantee ---------- */
.guar {
  background: var(--paper); border: 1px solid var(--gold); border-radius: var(--r-lg);
  padding: 2.1rem; text-align: center; position: relative;
}
.guar::before {
  content: ""; position: absolute; top: 6px; left: 6px; right: 6px; bottom: 6px;
  border: 1px solid var(--oat-3); border-radius: 8px; pointer-events: none;
}
.guar img { max-width: 160px; margin-bottom: 1.05rem; position: relative; z-index: 2; }
.guar h3, .guar p { position: relative; z-index: 2; }

/* ---------- FAQ ---------- */
.accordion-item {
  border: 1px solid var(--hair); border-radius: var(--r) !important;
  margin-bottom: .7rem; overflow: hidden; background: var(--paper);
}
.accordion-button {
  font-family: 'DM Serif Display', serif; font-weight: 400; font-size: 1.15rem;
  color: var(--ink); background: var(--paper); padding: 1.08rem 1.35rem;
}
.accordion-button:not(.collapsed) { background: var(--oat); color: var(--burgundy); box-shadow: none; }
.accordion-button:focus { box-shadow: 0 0 0 3px rgba(184,135,74,.3); border-color: var(--gold); }
.accordion-body { font-size: .94rem; color: var(--body); padding: 0 1.35rem 1.25rem; }

/* ---------- References ---------- */
.refs { list-style: none; padding: 0; margin: 0; counter-reset: r; }
.refs li {
  counter-increment: r; position: relative; padding-left: 3rem;
  margin-bottom: .95rem; font-size: .9rem; color: var(--body);
}
.refs li::before {
  content: counter(r, upper-roman); position: absolute; left: 0; top: 0;
  width: 32px; text-align: right;
  font-family: 'DM Serif Display', serif; font-style: italic;
  color: var(--gold-dk); font-size: 1rem;
}
.refs a { color: var(--burgundy); text-decoration: underline; text-underline-offset: 2px; }

/* ---------- Breadcrumb / head ---------- */
.crumb { background: var(--oat-2); border-bottom: 1px solid var(--line); padding: .85rem 0; font-size: .87rem; }
.crumb a { color: var(--burgundy); text-decoration: none; font-weight: 500; }
.crumb a:hover { color: var(--burgundy-dk); text-decoration: underline; }
.crumb .sep { color: var(--gold); margin: 0 .55rem; font-family: 'DM Serif Display', serif; }
.crumb .cur { color: var(--muted); font-style: italic; font-family: 'DM Serif Display', serif; }

.page-head {
  background: var(--oat-2); padding: clamp(2.4rem, 5vw, 3.9rem) 0;
  position: relative; border-bottom: 1px solid var(--line);
}
.page-head::before {
  content: ""; position: absolute; bottom: -1px; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.page-head h1 { color: var(--ink); margin-bottom: .8rem; }
.page-head p { color: var(--body); font-size: 1.05rem; max-width: 720px; margin-bottom: 0; }

/* ---------- Article body ---------- */
.article { max-width: 780px; margin: 0 auto; }
.article h2 {
  font-size: 1.75rem; margin: 2.3rem 0 .9rem; position: relative;
}
.article h2::before {
  content: ""; display: block; width: 44px; height: 1px;
  background: var(--gold); margin-bottom: .7rem;
}
.article h3 { font-size: 1.32rem; margin: 1.8rem 0 .65rem; color: var(--burgundy); }
.article p, .article li { font-size: 1.04rem; line-height: 1.82; }
.article ul, .article ol { margin-bottom: 1.2rem; padding-left: 1.3rem; }
.article li { margin-bottom: .55rem; }
.article a { color: var(--burgundy); text-decoration: underline; text-underline-offset: 2px; }
.article a:hover { color: var(--burgundy-dk); }
.article img { border-radius: var(--r); margin: 1.5rem 0; }
.article blockquote {
  border-left: 3px solid var(--gold);
  padding: .8rem 1.4rem; margin: 1.6rem 0;
  color: var(--burgundy); font-size: 1.15rem;
  font-family: 'DM Serif Display', serif; font-weight: 400;
  line-height: 1.45; font-style: italic;
}

/* ---------- Legal ---------- */
.legal h2 { font-size: 1.4rem; margin: 2.1rem 0 .75rem; }
.legal p, .legal li { font-size: .98rem; color: var(--body); line-height: 1.76; }
.legal ul { padding-left: 1.3rem; margin-bottom: 1.15rem; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--burgundy);
  color: #E8D6D8; padding: 2rem 2.2rem; margin: 2rem 0;
  border-radius: var(--r-lg); text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; top: 6px; left: 6px; right: 6px; bottom: 6px;
  border: 1px solid rgba(184,135,74,.4); border-radius: 8px; pointer-events: none;
}
.cta-band h4 {
  color: #fff; margin-bottom: .55rem;
  font-family: 'DM Serif Display', serif; font-weight: 400; font-size: 1.5rem;
  position: relative; z-index: 2;
}
.cta-band p { font-size: .95rem; margin-bottom: 1.2rem; position: relative; z-index: 2; }
.cta-band .btn { position: relative; z-index: 2; }

/* ---------- Footer ---------- */
.foot {
  background: var(--burgundy-dk); color: #B39A9E;
  padding: 3.6rem 0 0; font-size: .9rem;
  border-top: 3px solid var(--gold);
}
.foot h5 {
  color: #fff; font-family: 'Public Sans', sans-serif; font-weight: 700;
  font-size: .73rem; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 1rem;
}
.foot .fb {
  font-family: 'DM Serif Display', serif; font-weight: 400; font-size: 1.65rem;
  color: #fff; display: block; margin-bottom: .8rem; letter-spacing: -.01em;
}
.foot .fb em { color: var(--gold-hi); font-style: italic; }
.foot ul { list-style: none; padding: 0; margin: 0; }
.foot ul li { margin-bottom: .58rem; }
.foot a { color: #B39A9E; text-decoration: none; }
.foot a:hover { color: var(--gold-hi); }
.foot-trust {
  display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center;
  border-top: 1px solid rgba(255,255,255,.1); margin-top: 2.6rem; padding: 1.5rem 0;
}
.foot-trust span {
  font-size: .72rem; border: 1px solid rgba(255,255,255,.13);
  padding: .3rem .82rem; border-radius: 100px; color: #C7B4B6;
}
.foot-legal {
  border-top: 1px solid rgba(255,255,255,.1); padding: 1.5rem 0 6.4rem;
  font-size: .8rem; color: #99878A; text-align: center;
}
.foot-legal p { margin-bottom: .6rem; }

/* ---------- Sticky bar ---------- */
.sbar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1030;
  background: var(--burgundy); border-top: 2px solid var(--gold);
  padding: .62rem 0; box-shadow: 0 -6px 24px rgba(78,30,36,.28);
}
.sbar .inner { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.sbar .txt {
  color: #E8D6D8; font-size: .89rem; margin: 0;
  font-family: 'DM Serif Display', serif; font-style: italic;
}
.sbar .txt b { color: var(--gold-hi); font-weight: 400; }
.sbar .btn { padding: .56rem 1.35rem; font-size: .9rem; }

/* ---------- Utilities ---------- */
.lnk {
  color: var(--burgundy); text-decoration: underline;
  text-underline-offset: 2px; font-weight: 500;
}
.lnk:hover { color: var(--burgundy-dk); }
.aff-box {
  font-size: .82rem; color: var(--muted); background: var(--oat-2);
  border-left: 3px solid var(--gold); border-radius: var(--r-sm); padding: .95rem 1.2rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
  .navbar-collapse { background: var(--oat); border-top: 1px solid var(--line); margin-top: .6rem; padding: .78rem 0; }
  .navbar .nav-link { padding: .6rem .2rem !important; }
  .hero-media { position: static; }
  .pathway-flow { flex-direction: column; }
  .pathway-step { margin-right: 0; margin-bottom: 1.6rem; }
  .pathway-step:last-child { margin-bottom: 0; }
  .pathway-step::after {
    content: "↓"; right: 50%; top: auto; bottom: -1.4rem;
    transform: translateX(50%); font-size: 1.4rem;
  }
  .ladder-row { grid-template-columns: 1fr; gap: .3rem; }
  .ladder-row .grade { justify-self: start; }
}
@media (max-width: 767.98px) {
  body { font-size: .98rem; }
  .hero { padding-top: 1.6rem; }
  .stats { gap: 1.3rem; }
  .stats .s .v { font-size: 1.9rem; }
  .s-row { flex-direction: column; gap: .05rem; }
  .s-row b { flex: none; }
  .sbar .txt { display: none; }
  .sbar .btn { width: 100%; }
  .foot-legal { padding-bottom: 5.4rem; }
  .plan img.p-img { max-height: 170px; }
  .plan .price { font-size: 2.5rem; }
  .cta-band { padding: 1.7rem 1.4rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .btn:hover, .card-j:hover, .plan:hover { transform: none; }
}

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