/* ============================================================
   HormoneFlux - bloom.css
   Quiet Bloom theme. hf- prefixed BEM, organized by page section.
   tokens -> base -> layout -> header -> hero -> sections ->
   pricing -> reviews -> footer -> utilities -> responsive
   ============================================================ */
:root{
  --bg:#f6efe7; --cream:#fffaf3; --surface:#fbf3ea;
  --rose:#a85d68; --rose-deep:#7e3f4b; --rose-soft:#ecd3d4; --rose-tint:#f3e4e2;
  --gold:#d99a3a; --gold-cta:#f3c24f; --gold-cta-d:#e7ad33;
  --ink:#3a282b; --muted:#7c6a66; --line:#e7d9cb;
  --radius:16px; --radius-sm:10px; --shadow:0 14px 40px rgba(126,63,75,.12);
  --shadow-sm:0 6px 18px rgba(126,63,75,.08);
  --serif:"Cormorant Garamond",Georgia,serif; --sans:"Sen",system-ui,Arial,sans-serif;
  --wrap:1140px;
}
*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;font-family:var(--sans);color:var(--ink);background:var(--bg);
  line-height:1.65;font-size:17px;-webkit-font-smoothing:antialiased}
h1,h2,h3,h4{font-family:var(--serif);font-weight:600;line-height:1.12;margin:0 0 .5em;color:var(--rose-deep)}
h1{font-size:clamp(2.3rem,5vw,3.5rem)}
h2{font-size:clamp(1.8rem,3.4vw,2.6rem)}
h3{font-size:1.4rem;color:var(--ink)}
p{margin:0 0 1rem}
a{color:var(--rose);text-decoration:none}
a:hover{text-decoration:underline}
img{max-width:100%;height:auto;display:block}
main{display:block}
em{font-style:italic;color:var(--rose)}

/* ---- buttons ---- */
.hf-btn{display:inline-flex;align-items:center;gap:.5em;justify-content:center;
  font-family:var(--sans);font-weight:800;letter-spacing:.02em;text-transform:uppercase;
  font-size:.92rem;padding:.95em 1.7em;border-radius:999px;border:2px solid transparent;
  cursor:pointer;transition:transform .15s ease,box-shadow .15s ease,background .15s ease;text-decoration:none}
.hf-btn small{font-weight:700;text-transform:none;opacity:.85;font-size:.85em}
.hf-btn:hover{text-decoration:none;transform:translateY(-2px)}
.hf-btn--gold{background:var(--gold-cta);color:#43301f;box-shadow:0 8px 20px rgba(231,173,51,.4)}
.hf-btn--gold:hover{background:var(--gold-cta-d)}
.hf-btn--rose{background:var(--rose);color:#fff}
.hf-btn--rose:hover{background:var(--rose-deep)}
.hf-btn--ghost{background:transparent;color:var(--rose-deep);border-color:var(--rose-soft)}
.hf-btn--ghost:hover{background:var(--rose-tint)}
.hf-btn--lg{font-size:1.05rem;padding:1.1em 2em}
.hf-btn--block{display:flex;width:100%}

/* ---- ribbon ---- */
.hf-ribbon{background:var(--rose-deep);color:#fbe9d8;text-align:center;
  font-size:.82rem;letter-spacing:.04em;padding:.55rem 1rem;font-weight:500}

/* ---- header ---- */
.hf-header{position:sticky;top:0;z-index:50;background:rgba(255,250,243,.96);
  backdrop-filter:blur(8px);border-bottom:1px solid var(--line);
  display:flex;align-items:center;justify-content:space-between;
  gap:1rem;padding:.85rem clamp(1rem,4vw,2.2rem)}
.hf-brand{display:flex;align-items:center;gap:.45rem;text-decoration:none}
.hf-brand__mark{color:var(--gold);font-size:1.35rem;line-height:1}
.hf-brand__word{font-family:var(--serif);font-style:italic;font-weight:700;
  font-size:1.7rem;color:var(--rose-deep);letter-spacing:.01em}
.hf-brand__word--foot{font-size:1.6rem;color:#fbe9d8;display:inline-block;margin-bottom:.4rem}
.hf-nav{display:flex;align-items:center;gap:1.5rem}
.hf-nav__list{display:flex;align-items:center;gap:1.2rem;list-style:none;margin:0;padding:0}
.hf-nav__link{font-weight:700;font-size:.93rem;color:var(--ink);text-decoration:none}
.hf-nav__link:hover,.hf-nav__link.is-active{color:var(--rose);text-decoration:none}
.hf-nav__cta{padding:.6em 1.2em;font-size:.8rem}
.hf-burger{display:none;flex-direction:column;gap:5px;background:none;border:0;cursor:pointer;padding:6px}
.hf-burger span{width:26px;height:3px;background:var(--rose-deep);border-radius:2px;transition:.2s}

/* ---- breadcrumb ---- */
.hf-crumb__wrap{max-width:var(--wrap);margin:0 auto;padding:1rem clamp(1rem,4vw,2.2rem) 0}
.hf-crumb{font-size:.85rem;color:var(--muted)}
.hf-crumb a{color:var(--muted)}
.hf-crumb a:hover{color:var(--rose)}
.hf-crumb__sep{margin:0 .35rem;color:var(--rose-soft)}
.hf-crumb [aria-current]{color:var(--rose-deep);font-weight:700}

/* ---- trust row / badges ---- */
.hf-trustrow{display:flex;flex-wrap:wrap;gap:.6rem 1.2rem;margin:1.3rem 0 0;
  font-size:.82rem;font-weight:700;color:var(--rose-deep)}
.hf-trustrow span{background:var(--rose-tint);padding:.35rem .8rem;border-radius:999px}

/* ---- hero ---- */
.hf-hero{max-width:var(--wrap);margin:0 auto;padding:clamp(2rem,5vw,3.5rem) clamp(1rem,4vw,2.2rem);
  display:grid;grid-template-columns:1.15fr .85fr;gap:clamp(1.5rem,4vw,3rem);align-items:center}
.hf-eyebrow{text-transform:uppercase;letter-spacing:.12em;font-size:.78rem;font-weight:800;
  color:var(--gold);margin-bottom:.6rem}
.hf-hero__title{margin-bottom:.4rem}
.hf-hero__sub{font-size:1.12rem;color:var(--muted);max-width:34ch}
.hf-rating{display:flex;align-items:center;gap:.6rem;margin:1.1rem 0;flex-wrap:wrap}
.hf-rating__stars{color:var(--gold);font-size:1.2rem;letter-spacing:.05em}
.hf-rating__num{font-weight:800;color:var(--rose-deep)}
.hf-rating__count{color:var(--muted);font-size:.9rem}
.hf-hero__benefits{list-style:none;margin:1.2rem 0;padding:0;display:grid;gap:.55rem}
.hf-hero__benefits li{position:relative;padding-left:1.7rem;font-size:.98rem}
.hf-hero__benefits li::before{content:"\2740";position:absolute;left:0;top:0;color:var(--rose);font-size:.9rem}
.hf-hero__cta{display:flex;flex-wrap:wrap;gap:.8rem;margin-top:.4rem}
.hf-hero__media{display:flex;justify-content:center}
.hf-hero__media img{filter:drop-shadow(0 24px 36px rgba(126,63,75,.25));border-radius:var(--radius)}

/* ---- portal strip ---- */
.hf-portal{background:var(--rose-deep);color:#fbe9d8;text-align:center}
.hf-portal p{max-width:920px;margin:0 auto;padding:1.3rem clamp(1rem,4vw,2rem);font-size:1.02rem}

/* ---- stats ---- */
.hf-stats{max-width:var(--wrap);margin:0 auto;padding:2.2rem clamp(1rem,4vw,2.2rem);
  display:grid;grid-template-columns:repeat(4,1fr);gap:1rem;text-align:center}
.hf-stats div{background:var(--cream);border:1px solid var(--line);border-radius:var(--radius);
  padding:1.3rem 1rem;box-shadow:var(--shadow-sm)}
.hf-stats strong{display:block;font-family:var(--serif);font-size:2rem;color:var(--rose)}
.hf-stats span{font-size:.85rem;color:var(--muted)}

/* ---- generic sections ---- */
.hf-section{max-width:var(--wrap);margin:0 auto;padding:clamp(2.2rem,5vw,3.6rem) clamp(1rem,4vw,2.2rem)}
.hf-section--tint{max-width:none;background:var(--surface);border-block:1px solid var(--line)}
.hf-section--tint > *{max-width:var(--wrap);margin-inline:auto}
.hf-section__head{text-align:center;max-width:760px;margin:0 auto 2rem}
.hf-section__head p{color:var(--muted)}
.hf-center{text-align:center}
.hf-link{font-weight:700}

/* ---- pillars ---- */
.hf-pillargrid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.3rem}
.hf-pillar{background:var(--cream);border:1px solid var(--line);border-top:4px solid var(--rose);
  border-radius:var(--radius);padding:1.6rem;box-shadow:var(--shadow-sm)}
.hf-pillar h3{color:var(--rose-deep)}
.hf-pillar p{font-size:.95rem;color:var(--muted)}
.hf-pillar__list{list-style:none;margin:.8rem 0 0;padding:0;display:grid;gap:.5rem}
.hf-pillar__list li{font-weight:700;font-size:.95rem;border-top:1px dashed var(--line);padding-top:.5rem}
.hf-pillar__list span{display:block;font-weight:400;font-size:.82rem;color:var(--muted)}

/* ---- verify table ---- */
.hf-vtable{display:grid;grid-template-columns:repeat(2,1fr);gap:.7rem;max-width:880px;margin:0 auto}
.hf-vrow{background:var(--cream);border:1px solid var(--line);border-left:4px solid var(--gold);
  border-radius:var(--radius-sm);padding:.85rem 1.1rem}
.hf-vrow dt{font-size:.74rem;text-transform:uppercase;letter-spacing:.08em;color:var(--muted);font-weight:700}
.hf-vrow dd{margin:.2rem 0 0;font-weight:700;color:var(--ink);font-size:.98rem}
.hf-vnote{max-width:880px;margin:1rem auto 0;font-size:.82rem;color:var(--muted);text-align:center}

/* ---- commitments ---- */
.hf-commit{display:grid;grid-template-columns:repeat(3,1fr);gap:1.3rem}
.hf-commit article{background:var(--cream);border:1px solid var(--line);border-radius:var(--radius);padding:1.6rem;position:relative}
.hf-commit__no{font-family:var(--serif);font-size:2.6rem;color:var(--rose-soft);display:block;line-height:1}
.hf-commit h3{margin-top:.3rem}
.hf-commit p{font-size:.94rem;color:var(--muted);margin:0}

/* ---- pricing ---- */
.hf-pricegrid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.4rem;align-items:start}
.hf-price{background:var(--cream);border:1px solid var(--line);border-radius:var(--radius);
  padding:1.5rem;text-align:center;box-shadow:var(--shadow-sm);position:relative}
.hf-price--feat{border:2px solid var(--rose);box-shadow:var(--shadow);transform:translateY(-8px)}
.hf-price__badge{background:var(--rose);color:#fff;font-weight:800;text-transform:uppercase;
  letter-spacing:.06em;font-size:.74rem;padding:.4rem;border-radius:999px;margin-bottom:.9rem}
.hf-price--feat .hf-price__badge{background:var(--gold-cta);color:#43301f}
.hf-price__badge--ghost{background:transparent;color:transparent}
.hf-price__head{display:flex;flex-direction:column}
.hf-price__qty{font-family:var(--serif);font-size:1.7rem;color:var(--rose-deep);font-weight:700}
.hf-price__supply{font-size:.85rem;color:var(--muted);text-transform:uppercase;letter-spacing:.05em}
.hf-price__pack{display:flex;justify-content:center;gap:-6px;margin:1rem 0;min-height:120px;align-items:flex-end;flex-wrap:wrap}
.hf-price__pack img{width:46px;height:auto;margin:0 -5px;filter:drop-shadow(0 6px 10px rgba(126,63,75,.18))}
.hf-price__money{margin:.6rem 0}
.hf-price__per{display:block;font-family:var(--serif);font-size:2.8rem;font-weight:700;color:var(--ink);line-height:1}
.hf-price__per small{font-size:.9rem;font-family:var(--sans);color:var(--muted)}
.hf-price__was{text-decoration:line-through;color:var(--muted);font-size:.95rem;margin-right:.4rem}
.hf-price__total{display:block;color:var(--rose);font-weight:700;font-size:.95rem;margin-top:.2rem}
.hf-price__list{list-style:none;margin:1rem 0;padding:0;text-align:left;display:grid;gap:.4rem;font-size:.9rem}
.hf-price__bonus{color:var(--rose-deep);font-weight:700}
.hf-price__bonus--muted{color:var(--muted);font-weight:400}
.hf-price__cards{font-size:.7rem;color:var(--muted);margin-top:.7rem;letter-spacing:.04em}

/* ---- reviews (home) ---- */
.hf-reviews{display:grid;grid-template-columns:repeat(3,1fr);gap:1.3rem}
.hf-reviews blockquote{background:var(--cream);border:1px solid var(--line);border-radius:var(--radius);
  padding:1.4rem;margin:0;box-shadow:var(--shadow-sm)}
.hf-reviews p{font-style:italic;color:var(--ink)}
.hf-reviews cite{font-style:normal;font-weight:700;font-size:.85rem;color:var(--rose-deep)}

/* ---- prose ---- */
.hf-prose{max-width:760px;margin:0 auto}
.hf-prose--wide{max-width:880px}
.hf-prose h2{margin-top:2rem;color:var(--rose-deep)}
.hf-prose h3{margin-top:1.4rem}
.hf-prose p,.hf-prose li{color:#4d3b3d}
.hf-steps,.hf-biblio{padding-left:1.3rem;display:grid;gap:.7rem;margin:1rem 0}
.hf-biblio li{font-size:.88rem;color:var(--muted)}
.hf-ticks{list-style:none;padding:0;margin:1rem 0;display:grid;gap:.6rem}
.hf-ticks li{position:relative;padding-left:1.8rem}
.hf-ticks li::before{content:"\2713";position:absolute;left:0;color:var(--rose);font-weight:800}

/* ---- lede ---- */
.hf-lede{max-width:880px;margin:0 auto;padding:clamp(1.5rem,4vw,2.6rem) clamp(1rem,4vw,2.2rem) .5rem}
.hf-lede--center{text-align:center}
.hf-lede p{font-size:1.12rem;color:var(--muted)}
.hf-fineprint{font-size:.82rem;color:var(--muted)}

/* ---- supplement facts ---- */
.hf-sf{max-width:880px;margin:1.5rem auto;background:var(--cream);border:2px solid var(--ink);border-radius:var(--radius);overflow:hidden}
.hf-sf__cap{background:var(--ink);color:#f7ead8;padding:.7rem 1.1rem;font-weight:700;font-size:.9rem}
.hf-sf__table{width:100%;border-collapse:collapse;font-size:.92rem}
.hf-sf__table thead th{background:var(--rose-tint);text-align:left;padding:.6rem 1.1rem;font-size:.78rem;text-transform:uppercase;letter-spacing:.05em;color:var(--rose-deep)}
.hf-sf__table td{padding:.55rem 1.1rem;border-top:1px solid var(--line);vertical-align:top}
.hf-sf__group th{background:var(--surface);text-align:left;padding:.55rem 1.1rem;font-family:var(--serif);
  font-size:1.05rem;color:var(--rose-deep);border-top:2px solid var(--rose-soft)}
.hf-sf__name{font-weight:700}
.hf-sf__dose{font-weight:800;color:var(--rose);white-space:nowrap}
.hf-sf__note{color:var(--muted);font-size:.85rem}
.hf-sf__foot{padding:.9rem 1.1rem;font-size:.8rem;color:var(--muted);background:var(--surface);margin:0}
.hf-badgeset{display:flex;flex-wrap:wrap;gap:.5rem;margin-top:1rem}
.hf-badgeset span{background:var(--rose-tint);color:var(--rose-deep);font-weight:700;font-size:.78rem;padding:.35rem .8rem;border-radius:999px}

/* ---- cta band + final ---- */
.hf-cta-band{max-width:var(--wrap);margin:2rem auto;padding:1.8rem clamp(1rem,4vw,2.2rem);
  background:var(--rose-tint);border-radius:var(--radius);display:flex;align-items:center;
  justify-content:space-between;gap:1.2rem;flex-wrap:wrap}
.hf-cta-band p{margin:0;font-family:var(--serif);font-size:1.5rem;color:var(--rose-deep)}
.hf-final{background:linear-gradient(160deg,var(--rose) 0%,var(--rose-deep) 100%);color:#fff;
  text-align:center;padding:clamp(2.5rem,6vw,4rem) 1.5rem}
.hf-final h2{color:#fff}
.hf-final p{max-width:560px;margin:0 auto 1.5rem;color:#f6dcdc}
.hf-final .hf-trustrow{justify-content:center;margin-top:1.5rem}
.hf-final .hf-trustrow span{background:rgba(255,255,255,.16);color:#fff}

/* ---- faq ---- */
.hf-faq{max-width:820px;margin:0 auto;display:grid;gap:.7rem}
.hf-faq--page{margin-top:1rem}
.hf-faq__item{background:var(--cream);border:1px solid var(--line);border-radius:var(--radius-sm);padding:0 1.2rem}
.hf-faq__item summary{cursor:pointer;font-weight:700;padding:1rem 0;list-style:none;color:var(--ink);position:relative;padding-right:2rem}
.hf-faq__item summary::-webkit-details-marker{display:none}
.hf-faq__item summary::after{content:"+";position:absolute;right:0;top:.9rem;color:var(--rose);font-size:1.4rem;line-height:1}
.hf-faq__item[open] summary::after{content:"\2013"}
.hf-faq__a{padding:0 0 1rem;color:var(--muted)}
.hf-faq__a p{margin:0}

/* ---- reviews page ---- */
.hf-bigrate{display:flex;flex-direction:column;align-items:center;gap:.3rem;margin:1rem 0}
.hf-bigrate__num{font-family:var(--serif);font-size:4rem;color:var(--rose);line-height:1;font-weight:700}
.hf-bigrate__stars{color:var(--gold);font-size:1.6rem}
.hf-bigrate__meta{color:var(--muted);font-size:.9rem}
.hf-critbars{display:grid;grid-template-columns:repeat(2,1fr);gap:.9rem 2rem;max-width:880px;margin:0 auto}
.hf-critbars > div{display:grid;grid-template-columns:1fr 2fr auto;align-items:center;gap:.7rem}
.hf-critbars span{font-size:.88rem;font-weight:700}
.hf-critbars b{color:var(--rose);font-size:.9rem}
.hf-bar{background:var(--rose-tint);border-radius:999px;height:9px;overflow:hidden}
.hf-bar i{display:block;height:100%;background:linear-gradient(90deg,var(--rose),var(--gold));border-radius:999px}
.hf-dist{max-width:620px;margin:0 auto 1.2rem;display:grid;gap:.5rem}
.hf-dist__row{display:grid;grid-template-columns:60px 1fr 44px;align-items:center;gap:.7rem;font-size:.85rem}
.hf-revcat{margin-bottom:2rem}
.hf-revcat h3{color:var(--rose-deep);border-bottom:2px solid var(--rose-soft);padding-bottom:.4rem}
.hf-revgrid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.2rem}
.hf-rev{background:var(--cream);border:1px solid var(--line);border-radius:var(--radius);padding:1.3rem;margin:0}
.hf-rev--crit{border-left:4px solid var(--gold)}
.hf-rev__top{display:flex;align-items:center;justify-content:space-between;margin-bottom:.6rem}
.hf-rev__avatar{width:38px;height:38px;border-radius:50%;background:var(--rose);color:#fff;
  display:flex;align-items:center;justify-content:center;font-weight:800;font-size:.85rem}
.hf-rev__stars{color:var(--gold)}
.hf-rev p{font-style:italic;font-size:.95rem}
.hf-rev cite{font-style:normal;font-weight:700;font-size:.82rem;color:var(--rose-deep)}
.hf-rev__badge{display:inline-block;background:var(--rose-tint);color:var(--rose-deep);font-size:.68rem;
  font-weight:800;text-transform:uppercase;padding:.15rem .5rem;border-radius:999px;margin-left:.4rem}
.hf-timeline{display:grid;grid-template-columns:repeat(4,1fr);gap:1rem}
.hf-timeline > div{background:var(--cream);border:1px solid var(--line);border-radius:var(--radius);padding:1.2rem;text-align:center}
.hf-timeline b{display:block;font-family:var(--serif);font-size:1.2rem;color:var(--rose);margin-bottom:.4rem}
.hf-timeline p{font-size:.86rem;color:var(--muted);margin:0}

/* ---- advisors ---- */
.hf-advgrid{max-width:var(--wrap);margin:1.5rem auto;padding:0 clamp(1rem,4vw,2.2rem);display:grid;grid-template-columns:repeat(3,1fr);gap:1.3rem}
.hf-advisor{background:var(--cream);border:1px solid var(--line);border-radius:var(--radius);padding:1.6rem;text-align:center}
.hf-advisor__av{width:64px;height:64px;border-radius:50%;background:var(--rose-deep);color:#fff;
  display:flex;align-items:center;justify-content:center;font-weight:800;font-size:1.1rem;margin:0 auto 1rem;font-family:var(--serif)}
.hf-advisor__role{color:var(--gold);font-weight:700;font-size:.86rem;margin-bottom:.6rem}
.hf-advisor p{font-size:.9rem;color:var(--muted)}

/* ---- org card / contact ---- */
.hf-orgcard{max-width:880px;margin:1.5rem auto;background:var(--rose-tint);border-radius:var(--radius);
  padding:1.6rem;text-align:center}
.hf-orgcard h2{color:var(--rose-deep)}
.hf-contact{max-width:var(--wrap);margin:1rem auto;padding:0 clamp(1rem,4vw,2.2rem);
  display:grid;grid-template-columns:1fr 1fr;gap:2rem}
.hf-contact__info h2{font-size:1.4rem;margin-top:1.4rem;color:var(--rose-deep)}
.hf-contact__info h2:first-child{margin-top:0}
.hf-contact__form{background:var(--cream);border:1px solid var(--line);border-radius:var(--radius);padding:1.6rem;align-self:start}
.hf-contact__form label{display:block;font-weight:700;font-size:.85rem;margin-bottom:.9rem}
.hf-contact__form input,.hf-contact__form select,.hf-contact__form textarea{
  width:100%;margin-top:.3rem;padding:.7rem;border:1px solid var(--line);border-radius:var(--radius-sm);
  font-family:inherit;font-size:.95rem;background:var(--bg)}
.hf-mono{font-family:ui-monospace,Menlo,Consolas,monospace;background:var(--rose-tint);padding:.1rem .4rem;border-radius:5px;font-weight:700}
.hf-vsteps{counter-reset:vstep;list-style:none;padding:0;max-width:880px;margin:0 auto;display:grid;gap:.8rem}
.hf-vsteps li{counter-increment:vstep;background:var(--cream);border:1px solid var(--line);border-radius:var(--radius-sm);
  padding:1rem 1.1rem 1rem 3.2rem;position:relative}
.hf-vsteps li::before{content:counter(vstep);position:absolute;left:1rem;top:1rem;width:1.6rem;height:1.6rem;
  background:var(--rose);color:#fff;border-radius:50%;display:flex;align-items:center;justify-content:center;font-weight:800;font-size:.85rem}
.hf-legal h2{font-size:1.35rem}

/* ---- footer ---- */
.hf-footer{background:var(--ink);color:#d9c7c2;margin-top:2rem}
.hf-foot__top{max-width:var(--wrap);margin:0 auto;padding:2.6rem clamp(1rem,4vw,2.2rem);
  display:grid;grid-template-columns:1.3fr 2fr;gap:2.5rem}
.hf-foot__brand p{font-size:.88rem;color:#c4afaa}
.hf-foot__addr{font-size:.82rem;line-height:1.7}
.hf-foot__addr a{color:#f0c9a0}
.hf-foot__cols{display:grid;grid-template-columns:repeat(4,1fr);gap:1.2rem}
.hf-foot__col h4{font-family:var(--sans);font-size:.78rem;text-transform:uppercase;letter-spacing:.08em;color:#fff;margin-bottom:.7rem}
.hf-foot__col a{display:block;color:#cbb6b1;font-size:.85rem;padding:.22rem 0;text-decoration:none}
.hf-foot__col a:hover{color:#f0c9a0}
.hf-foot__legal{border-top:1px solid rgba(255,255,255,.12)}
.hf-foot__legal > *{max-width:var(--wrap);margin:0 auto;padding-inline:clamp(1rem,4vw,2.2rem)}
.hf-portal-line{padding-top:1.4rem;color:#f0c9a0;font-weight:700;font-size:.85rem}
.hf-foot__legal p{font-size:.78rem;color:#a8938e;line-height:1.6;padding-block:.3rem}
.hf-foot__copy{padding-bottom:1.8rem;color:#8d7873}

/* ---- responsive ---- */
@media(max-width:900px){
  .hf-burger{display:flex}
  .hf-nav{position:fixed;inset:0 0 0 auto;width:min(82vw,330px);background:var(--cream);
    flex-direction:column;align-items:flex-start;padding:5rem 1.6rem 2rem;gap:1.2rem;
    transform:translateX(100%);transition:transform .25s ease;box-shadow:var(--shadow);z-index:60}
  .hf-nav.is-open{transform:translateX(0)}
  .hf-nav__list{flex-direction:column;align-items:flex-start;gap:1rem;width:100%}
  .hf-nav__cta{width:100%}
  .hf-hero{grid-template-columns:1fr;text-align:center}
  .hf-hero__sub,.hf-hero__benefits{margin-inline:auto}
  .hf-hero__benefits li{text-align:left}
  .hf-hero__cta,.hf-rating,.hf-trustrow{justify-content:center}
  .hf-hero__media{order:-1}
  .hf-stats{grid-template-columns:repeat(2,1fr)}
  .hf-pillargrid,.hf-commit,.hf-pricegrid,.hf-reviews,.hf-revgrid,.hf-advgrid,.hf-timeline,.hf-critbars,.hf-vtable{grid-template-columns:1fr}
  .hf-price--feat{transform:none}
  .hf-contact,.hf-foot__top{grid-template-columns:1fr}
  .hf-foot__cols{grid-template-columns:repeat(2,1fr)}
  .hf-cta-band{flex-direction:column;text-align:center}
}
@media(max-width:520px){
  .hf-stats{grid-template-columns:1fr}
  .hf-foot__cols{grid-template-columns:1fr}
  .hf-sf__note{display:none}
}
