/* ===========================================================================
   haneyfil.com — hfy- design system
   Written for this domain. Flexbox is the primary layout technique; grid
   appears only where a two-axis relationship genuinely exists. Decorative
   marks are pseudo-elements rather than extra DOM. Palette taken off the
   HoneyFil bottle: warm near-black, amber, bronze, on ivory and oat.
   =========================================================================== */

:root {
  --hfy-ink:     #14110D;
  --hfy-ink-2:   #241F17;
  --hfy-night:   #0E0D14;
  --hfy-amber:   #E39B1F;
  --hfy-amber-d: #C8850F;
  --hfy-bronze:  #8A5E0C;
  --hfy-honey:   #FBEBCE;
  --hfy-oat:     #F7EEDF;
  --hfy-ivory:   #FFFBF3;
  --hfy-body:    #5B5145;
  --hfy-quiet:   #7E7365;
  --hfy-rule:    #EBDFCA;
  --hfy-rule-2:  #DCC8A4;

  --hfy-gap:   14px;
  --hfy-gap-2: 22px;
  --hfy-gap-3: 34px;
  --hfy-gap-4: 56px;
  --hfy-band:  clamp(62px, 7.5vw, 104px);
  --hfy-gut:   clamp(20px, 4.2vw, 44px);
  --hfy-max:   1180px;

  --hfy-r-sm: 10px;
  --hfy-r:    14px;
  --hfy-r-lg: 22px;

  --hfy-display: "Manrope", "Segoe UI", system-ui, sans-serif;
  --hfy-text:    "Public Sans", "Segoe UI", system-ui, sans-serif;

  --hfy-lift: 0 22px 44px -30px rgba(20, 17, 13, .45);
}

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

body {
  margin: 0;
  background: var(--hfy-ivory);
  color: var(--hfy-body);
  font-family: var(--hfy-text);
  font-size: 19px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--hfy-display);
  font-weight: 700;
  color: var(--hfy-ink);
  line-height: 1.16;
  letter-spacing: -0.018em;
}
p { margin: 0 0 var(--hfy-gap); }
p:last-child { margin-bottom: 0; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--hfy-bronze); text-underline-offset: 3px; }
a:hover { color: var(--hfy-ink); }
:focus-visible { outline: 3px solid var(--hfy-bronze); outline-offset: 3px; }

.hfy-skip {
  position: absolute; left: 0; top: 0; z-index: 900;
  background: var(--hfy-ink); color: #fff; padding: 12px 20px;
  width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; text-decoration: none;
}
.hfy-skip:focus { width: auto; height: auto; overflow: visible; clip: auto; }

.hfy-hold {
  width: 100%;
  max-width: calc(var(--hfy-max) + var(--hfy-gut) * 2);
  margin-inline: auto;
  padding-inline: var(--hfy-gut);
}

/* ---------------------------------------------------------------------------
   bands
   --------------------------------------------------------------------------- */

.hfy-band { padding-block: var(--hfy-band); }
.hfy-band--oat { background: var(--hfy-oat); }
.hfy-band--honey { background: var(--hfy-honey); }
.hfy-band--ink { background: var(--hfy-ink); color: #E6DCCB; }
.hfy-band--ink h2, .hfy-band--ink h3 { color: #fff; }

/* a hairline that only shows between two same-coloured bands */
.hfy-band + .hfy-band:not([class*="--"]) { border-top: 1px solid var(--hfy-rule); }

.hfy-head { margin-bottom: var(--hfy-gap-4); }
.hfy-head--mid { text-align: center; }
.hfy-head--mid .hfy-intro { margin-inline: auto; }

.hfy-kick {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--hfy-display); font-weight: 700;
  font-size: .7rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--hfy-bronze); margin-bottom: var(--hfy-gap);
}
/* the kicker rule, drawn rather than marked up */
.hfy-kick::before,
.hfy-kick::after {
  content: ""; width: 26px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--hfy-amber), transparent);
}
.hfy-kick::before { background: linear-gradient(270deg, var(--hfy-amber), transparent); }
.hfy-head--start .hfy-kick::before { display: none; }
.hfy-band--ink .hfy-kick { color: var(--hfy-amber); }

.hfy-h2 { font-size: clamp(1.65rem, 3.3vw, 2.35rem); max-width: 21ch; }
.hfy-head--mid .hfy-h2 { margin-inline: auto; }
.hfy-intro {
  margin: var(--hfy-gap) 0 0; max-width: 62ch;
  color: var(--hfy-quiet); font-size: 1rem;
}
.hfy-fine { font-size: .85rem; color: var(--hfy-quiet); }

/* ---------------------------------------------------------------------------
   buttons — squared with a soft corner, a hairline keyline and a pseudo sheen
   --------------------------------------------------------------------------- */

.hfy-act {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  font-family: var(--hfy-display); font-weight: 700; font-size: 1rem;
  padding: 16px 30px;
  border: 2px solid transparent; border-radius: var(--hfy-r);
  text-decoration: none; cursor: pointer;
  transition: background-color .16s, color .16s, border-color .16s,
              transform .16s;
}
.hfy-act::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 35%,
              rgba(255, 255, 255, .34) 50%, transparent 65%);
  transform: translateX(-120%);
  transition: transform .55s ease;
}
.hfy-act:hover::after { transform: translateX(120%); }
.hfy-act:active { transform: translateY(1px); }

.hfy-act--solid { background: var(--hfy-amber); color: #191307; }
.hfy-act--solid:hover { background: var(--hfy-amber-d); color: #191307; }
.hfy-act--ink { background: var(--hfy-ink); color: #fff; }
.hfy-act--ink:hover { background: var(--hfy-ink-2); color: #fff; }
.hfy-act--line {
  background: transparent; color: var(--hfy-ink);
  border-color: var(--hfy-rule-2);
}
.hfy-act--line:hover { border-color: var(--hfy-ink); color: var(--hfy-ink); }
.hfy-act--line::after { display: none; }
.hfy-act--block { width: 100%; }
.hfy-act--tight { padding: 11px 22px; font-size: .9rem; border-radius: var(--hfy-r-sm); }

.hfy-acts { display: flex; flex-wrap: wrap; gap: 12px; }
.hfy-acts--mid { justify-content: center; }

/* ---------------------------------------------------------------------------
   header
   --------------------------------------------------------------------------- */

.hfy-ticker {
  background: var(--hfy-ink); color: #C9BCA6;
  font-size: .76rem; letter-spacing: .04em;
}
.hfy-ticker .hfy-hold {
  display: flex; flex-wrap: wrap; justify-content: center;
  align-items: center; gap: 4px var(--hfy-gap-2);
  padding-block: 9px; text-align: center;
}
.hfy-ticker span { display: inline-flex; align-items: center; gap: 10px; }
.hfy-ticker span + span::before {
  content: ""; width: 4px; height: 4px; border-radius: 50%;
  background: var(--hfy-amber);
}

.hfy-bar {
  position: sticky; top: 0; z-index: 700;
  background: rgba(255, 251, 243, .94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hfy-rule);
}
.hfy-bar .hfy-hold {
  display: flex; align-items: center; gap: var(--hfy-gap);
  padding-block: 13px;
}
.hfy-brand {
  display: inline-flex; align-items: center; gap: 11px;
  font-family: var(--hfy-display); font-weight: 800; font-size: 1.28rem;
  color: var(--hfy-ink); text-decoration: none; letter-spacing: -0.03em;
  flex: 0 0 auto;
}
.hfy-brand b { color: var(--hfy-bronze); font-weight: 800; }
.hfy-mark { flex: 0 0 auto; }

.hfy-nav { display: none; margin-left: auto; }
.hfy-nav ul {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: clamp(10px, 1.5vw, 22px);
  list-style: none; margin: 0; padding: 0;
}
.hfy-nav a {
  position: relative;
  font-family: var(--hfy-display); font-size: .89rem; font-weight: 600;
  color: var(--hfy-ink); text-decoration: none; padding-block: 4px;
}
/* underline grows from the left on hover — pseudo-element, no extra markup */
.hfy-nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px; border-radius: 2px;
  background: var(--hfy-amber);
  transform: scaleX(0); transform-origin: left;
  transition: transform .18s ease;
}
.hfy-nav a:hover::after,
.hfy-nav a[aria-current]::after { transform: scaleX(1); }
.hfy-nav a:hover { color: var(--hfy-bronze); }

.hfy-bar .hfy-act { flex: 0 0 auto; }
.hfy-toggle {
  margin-left: auto;
  display: inline-flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 5px;
  width: 46px; height: 42px;
  border: 1px solid var(--hfy-rule-2); border-radius: var(--hfy-r-sm);
  background: #fff; cursor: pointer;
}
.hfy-toggle span {
  display: block; width: 20px; height: 2px; border-radius: 2px;
  background: var(--hfy-ink);
}
.hfy-drawer { border-top: 1px solid var(--hfy-rule); background: #fff; }
.hfy-drawer[hidden] { display: none; }
.hfy-drawer ul {
  list-style: none; margin: 0; padding: var(--hfy-gap) 0;
  display: flex; flex-direction: column;
}
.hfy-drawer a {
  display: block; padding: 12px var(--hfy-gut);
  color: var(--hfy-ink); text-decoration: none;
  font-family: var(--hfy-display); font-weight: 600; font-size: 1rem;
}
.hfy-drawer .hfy-act { margin: var(--hfy-gap) var(--hfy-gut); }

/* ---------------------------------------------------------------------------
   hero
   --------------------------------------------------------------------------- */

.hfy-hero {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--hfy-honey) 0%, var(--hfy-oat) 100%);
  padding-block: var(--hfy-gap-4) var(--hfy-band);
}
/* the warm glow behind the bottles */
.hfy-hero::before {
  content: ""; position: absolute; z-index: 0;
  left: 12%; top: 12%; width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227, 155, 31, .3), transparent 68%);
  filter: blur(10px);
  pointer-events: none;
}
.hfy-hero > .hfy-hold { position: relative; z-index: 1; }
.hfy-hero__flex { display: flex; flex-direction: column; gap: var(--hfy-gap-4); }
.hfy-hero__art { flex: 1 1 44%; min-width: 0; text-align: center; }
.hfy-hero__say { flex: 1 1 56%; min-width: 0; }

.hfy-shot { position: relative; display: inline-block; max-width: 100%; }
.hfy-shot img { margin-inline: auto; }
.hfy-tag {
  position: absolute; right: -4px; bottom: 14%;
  background: #fff; border: 1px solid var(--hfy-rule);
  border-radius: 999px; padding: 9px 17px;
  font-family: var(--hfy-display); font-weight: 700; font-size: .8rem;
  color: var(--hfy-ink); box-shadow: var(--hfy-lift);
}

.hfy-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: #fff; border: 1px solid var(--hfy-rule);
  border-radius: 999px; padding: 8px 17px;
  font-family: var(--hfy-display); font-weight: 600; font-size: .79rem;
  color: var(--hfy-ink); margin-bottom: var(--hfy-gap-2);
}
.hfy-badge::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--hfy-amber);
  box-shadow: 0 0 0 4px rgba(227, 155, 31, .2);
}
.hfy-hero h1 { font-size: clamp(2.05rem, 4.5vw, 3.25rem); }
.hfy-hero h1 em { font-style: normal; color: var(--hfy-bronze); }
.hfy-lede__text { margin-top: var(--hfy-gap-2); font-size: 1.05rem; max-width: 52ch; }

.hfy-pills { display: flex; flex-wrap: wrap; gap: 9px; margin-top: var(--hfy-gap-2); }
.hfy-pill {
  background: rgba(255, 255, 255, .78);
  border: 1px solid var(--hfy-rule);
  border-radius: var(--hfy-r-sm);
  padding: 7px 14px;
  font-family: var(--hfy-display); font-weight: 600; font-size: .79rem;
  color: var(--hfy-ink);
}

.hfy-marks { list-style: none; margin: var(--hfy-gap-2) 0 0; padding: 0;
  display: flex; flex-direction: column; gap: 10px; }
.hfy-marks li { position: relative; padding-left: 30px; font-size: .96rem; }
.hfy-marks li::before {
  content: ""; position: absolute; left: 0; top: .48em;
  width: 16px; height: 9px;
  border-left: 2.5px solid var(--hfy-amber);
  border-bottom: 2.5px solid var(--hfy-amber);
  transform: rotate(-45deg);
}

.hfy-hero__fine { margin-top: var(--hfy-gap-2); font-size: .83rem; color: var(--hfy-quiet); }

/* ---------------------------------------------------------------------------
   hero motif — a thirty-segment month dial, one segment per gummy
   --------------------------------------------------------------------------- */

.hfy-dial { margin: var(--hfy-gap-2) 0 0; display: flex;
  flex-direction: column; align-items: center; }
.hfy-dial svg { width: min(100%, 210px); height: auto; display: block; }
.hfy-dial__seg {
  fill: none; stroke-linecap: round; stroke-width: 8.5;
  stroke: var(--hfy-amber);
  opacity: .2;
  animation: hfy-sweep 6s ease-in-out infinite;
}
@keyframes hfy-sweep {
  0%, 100% { opacity: .2; }
  40%      { opacity: 1; }
  68%      { opacity: .3; }
}
.hfy-dial__hub {
  font-family: var(--hfy-display); font-weight: 800;
  fill: var(--hfy-ink);
}
.hfy-dial__sub { font-family: var(--hfy-text); fill: #8A7F6E; }
.hfy-dial figcaption {
  margin-top: 10px; font-size: .78rem; color: var(--hfy-quiet);
  text-align: center;
}

/* ---------------------------------------------------------------------------
   rate card — labels and values share a row, the bar runs full width beneath
   --------------------------------------------------------------------------- */

.hfy-rate {
  margin: var(--hfy-gap-3) 0 0;
  background: #fff;
  border: 1px solid var(--hfy-rule);
  border-radius: var(--hfy-r-lg);
  padding: 22px 24px 20px;
  max-width: 430px;
  box-shadow: var(--hfy-lift);
}
.hfy-rate figcaption {
  font-family: var(--hfy-display); font-weight: 700; font-size: .7rem;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--hfy-bronze);
  padding-bottom: 12px; margin-bottom: 14px;
  border-bottom: 1px solid var(--hfy-rule);
}
.hfy-rate__row { margin-bottom: 15px; }
.hfy-rate__row:last-of-type { margin-bottom: 0; }
.hfy-rate__top {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 12px; margin-bottom: 7px;
}
.hfy-rate__name { font-size: .88rem; color: var(--hfy-quiet); }
.hfy-rate__num {
  font-family: var(--hfy-display); font-weight: 800; font-size: 1rem;
  color: var(--hfy-ink);
}
.hfy-rate__line {
  position: relative; display: block; height: 8px;
  background: var(--hfy-honey); border-radius: 999px; overflow: hidden;
}
.hfy-rate__fill {
  position: absolute; inset: 0 auto 0 0; width: 0; min-width: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--hfy-amber-d), var(--hfy-amber));
  animation: hfy-grow .9s cubic-bezier(.2, .7, .3, 1) forwards;
}
@keyframes hfy-grow { to { width: var(--hfy-w); } }
.hfy-rate__note {
  margin: 14px 0 0; padding-top: 12px;
  border-top: 1px solid var(--hfy-rule);
  font-size: .76rem; color: var(--hfy-quiet); text-align: center;
}

@media (prefers-reduced-motion: reduce) {
  .hfy-rate__fill { animation: none; width: var(--hfy-w); }
  .hfy-dial__seg { animation: none; opacity: .72; }
}

/* ---------------------------------------------------------------------------
   flex card rows — the main layout device on this site
   --------------------------------------------------------------------------- */

.hfy-row { display: flex; flex-wrap: wrap; gap: var(--hfy-gap-2); }
.hfy-row > * { flex: 1 1 260px; min-width: 0; }
.hfy-row--wide > * { flex: 1 1 300px; }
.hfy-row--tight > * { flex: 1 1 200px; }

.hfy-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--hfy-rule);
  border-radius: var(--hfy-r-lg);
  padding: 30px 26px 28px;
}
/* the amber keyline across the top of every card */
.hfy-card::before {
  content: ""; position: absolute; left: 26px; right: 26px; top: 0;
  height: 3px; border-radius: 0 0 3px 3px;
  background: linear-gradient(90deg, var(--hfy-amber), transparent);
}
.hfy-card h3 { font-size: 1.05rem; margin-bottom: 9px; }
.hfy-card p { font-size: .94rem; margin: 0; }
.hfy-card--mid { text-align: center; }
.hfy-card--mid::before { left: 34%; right: 34%; background: var(--hfy-amber); }
.hfy-band--ink .hfy-card {
  background: rgba(255, 255, 255, .05);
  border-color: rgba(255, 255, 255, .14);
  color: #E6DCCB;
}

.hfy-count {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: var(--hfy-r-sm);
  background: var(--hfy-ink); color: var(--hfy-amber);
  font-family: var(--hfy-display); font-weight: 800; font-size: .84rem;
  margin-bottom: var(--hfy-gap);
}
.hfy-band--ink .hfy-count { background: var(--hfy-amber); color: #191307; }
.hfy-card--mid .hfy-count { margin-inline: auto; }

/* ---------------------------------------------------------------------------
   two-up split
   --------------------------------------------------------------------------- */

.hfy-split { display: flex; flex-wrap: wrap; gap: var(--hfy-gap-4); align-items: center; }
.hfy-split__art { flex: 1 1 320px; min-width: 0; }
.hfy-split__art img { margin-inline: auto; border-radius: var(--hfy-r-lg); }
.hfy-split__say { flex: 1 1 360px; min-width: 0; }
.hfy-split .hfy-head { margin-bottom: var(--hfy-gap-2); text-align: left; }
.hfy-split .hfy-h2 { margin-inline: 0; }

/* ---------------------------------------------------------------------------
   voices
   --------------------------------------------------------------------------- */

.hfy-voice {
  position: relative;
  background: #fff; border: 1px solid var(--hfy-rule);
  border-radius: var(--hfy-r-lg); padding: 28px 26px;
  margin: 0;
}
/* the quote mark, drawn */
.hfy-voice::before {
  content: "\201C";
  position: absolute; right: 22px; top: 6px;
  font-family: var(--hfy-display); font-weight: 800; font-size: 3.4rem;
  color: var(--hfy-honey); line-height: 1;
}
.hfy-voice__who { display: flex; align-items: center; gap: 13px; margin-bottom: 15px; }
.hfy-voice__who img { width: 50px; height: 50px; border-radius: 50%; }
.hfy-voice__who b {
  display: block; font-family: var(--hfy-display); font-weight: 700;
  color: var(--hfy-ink); font-size: .96rem;
}
.hfy-voice__who span { font-size: .79rem; color: var(--hfy-quiet); }
.hfy-voice blockquote { margin: 0; }
.hfy-voice p { font-size: .95rem; margin: 0; }

/* ---------------------------------------------------------------------------
   packages
   --------------------------------------------------------------------------- */

.hfy-supplies { display: flex; flex-wrap: wrap; gap: var(--hfy-gap-2); align-items: stretch; }
.hfy-supply {
  position: relative; flex: 1 1 280px; min-width: 0;
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--hfy-rule);
  border-radius: var(--hfy-r-lg);
  padding: 34px 26px 28px; text-align: center;
}
.hfy-supply--best { border: 2px solid var(--hfy-amber); }
.hfy-supply--pick { border-color: var(--hfy-rule-2); }
.hfy-supply__flag {
  position: absolute; top: 0; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--hfy-ink); color: var(--hfy-amber);
  border-radius: 999px; padding: 6px 17px; white-space: nowrap;
  font-family: var(--hfy-display); font-weight: 700; font-size: .68rem;
  letter-spacing: .12em; text-transform: uppercase;
}
.hfy-supply--pick .hfy-supply__flag { background: var(--hfy-bronze); color: #fff; }
.hfy-supply__art {
  display: flex; align-items: center; justify-content: center;
  height: 235px; margin-bottom: var(--hfy-gap);
}
.hfy-supply__art img { max-height: 235px; width: auto; }
.hfy-supply h3 { font-size: 1.28rem; }
.hfy-supply__len { font-size: .83rem; color: var(--hfy-quiet); margin-bottom: var(--hfy-gap); }
.hfy-supply__rate {
  font-family: var(--hfy-display); font-weight: 800;
  font-size: 2.2rem; color: var(--hfy-ink); line-height: 1;
}
.hfy-supply__rate small {
  font-family: var(--hfy-text); font-weight: 400; font-size: .8rem;
  color: var(--hfy-quiet);
}
.hfy-supply__sum { font-family: var(--hfy-display); font-weight: 600; font-size: .93rem; margin-top: 7px; color: var(--hfy-ink); }
.hfy-supply__ship { font-size: .83rem; font-weight: 600; color: var(--hfy-bronze); margin-top: 5px; }
.hfy-supply ul {
  list-style: none; margin: var(--hfy-gap-2) 0; padding: 0;
  display: flex; flex-direction: column; gap: 9px; text-align: left;
  flex: 1 1 auto;
}
.hfy-supply li { position: relative; padding-left: 25px; font-size: .89rem; }
.hfy-supply li::before {
  content: ""; position: absolute; left: 1px; top: .45em;
  width: 13px; height: 7px;
  border-left: 2.2px solid var(--hfy-bronze);
  border-bottom: 2.2px solid var(--hfy-bronze);
  transform: rotate(-45deg);
}

/* ---------------------------------------------------------------------------
   formula tiles
   --------------------------------------------------------------------------- */

.hfy-tile {
  position: relative;
  background: #fff; border: 1px solid var(--hfy-rule);
  border-radius: var(--hfy-r-lg); padding: 26px 24px;
  display: flex; flex-direction: column; gap: 9px;
}
.hfy-tile::after {
  content: ""; position: absolute; right: 0; bottom: 0;
  width: 46px; height: 46px;
  border-right: 2px solid var(--hfy-honey);
  border-bottom: 2px solid var(--hfy-honey);
  border-bottom-right-radius: var(--hfy-r-lg);
}
.hfy-tile__no {
  font-family: var(--hfy-display); font-weight: 800; font-size: .74rem;
  letter-spacing: .14em; color: var(--hfy-bronze);
}
.hfy-tile h3 { font-size: 1.02rem; }
.hfy-tile h3 a { color: inherit; text-decoration: none; }
.hfy-tile h3 a:hover { color: var(--hfy-bronze); }
.hfy-tile__kind {
  align-self: flex-start;
  background: var(--hfy-honey); color: #6E4B08;
  border-radius: 999px; padding: 3px 11px;
  font-family: var(--hfy-display); font-weight: 700; font-size: .68rem;
  letter-spacing: .06em;
}
.hfy-tile p { font-size: .92rem; margin: 0; }

/* ---------------------------------------------------------------------------
   promise panel
   --------------------------------------------------------------------------- */

.hfy-promise {
  display: flex; flex-wrap: wrap; gap: var(--hfy-gap-3); align-items: center;
  background: #fff; border: 1px solid var(--hfy-rule);
  border-radius: 26px; padding: clamp(26px, 4vw, 46px);
}
.hfy-promise__seal { flex: 0 1 260px; text-align: center; }
.hfy-promise__say { flex: 1 1 380px; min-width: 0; }
.hfy-promise h2 { font-size: clamp(1.4rem, 2.6vw, 1.95rem); max-width: 24ch; }

/* ---------------------------------------------------------------------------
   benefit strips
   --------------------------------------------------------------------------- */

.hfy-strips { display: flex; flex-direction: column; gap: 12px; }
.hfy-strip {
  display: flex; align-items: flex-start; gap: var(--hfy-gap);
  background: #fff; border: 1px solid var(--hfy-rule);
  border-radius: var(--hfy-r); padding: 20px 22px;
  transition: border-color .16s, transform .16s;
}
.hfy-strip:hover { border-color: var(--hfy-rule-2); transform: translateX(3px); }
.hfy-strip__dot {
  flex: 0 0 auto; width: 38px; height: 38px; border-radius: 12px;
  background: var(--hfy-honey);
  display: flex; align-items: center; justify-content: center;
}
.hfy-strip__dot::before {
  content: ""; width: 11px; height: 11px; border-radius: 3px;
  background: var(--hfy-amber-d); transform: rotate(45deg);
}
.hfy-strip h3 { font-size: 1rem; margin-bottom: 4px; }
.hfy-strip p { font-size: .9rem; margin: 0; }

/* ---------------------------------------------------------------------------
   routine + figures
   --------------------------------------------------------------------------- */

.hfy-steps {
  list-style: none; counter-reset: hfystep; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: var(--hfy-gap-2);
}
.hfy-steps li {
  counter-increment: hfystep;
  display: flex; align-items: flex-start; gap: var(--hfy-gap);
}
.hfy-steps li::before {
  content: counter(hfystep, decimal-leading-zero);
  flex: 0 0 auto;
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: transparent; color: var(--hfy-bronze);
  border: 2px solid var(--hfy-rule-2);
  font-family: var(--hfy-display); font-weight: 800; font-size: .84rem;
}
.hfy-steps h3 { font-size: 1rem; margin-bottom: 3px; }
.hfy-steps p { font-size: .92rem; margin: 0; }

.hfy-figs { display: flex; flex-wrap: wrap; gap: var(--hfy-gap); margin-top: var(--hfy-gap-3); }
.hfy-fig {
  flex: 1 1 150px; min-width: 0;
  background: #fff; border: 1px solid var(--hfy-rule);
  border-radius: var(--hfy-r); padding: 20px 14px; text-align: center;
}
.hfy-fig b {
  display: block; font-family: var(--hfy-display); font-weight: 800;
  font-size: 1.6rem; color: var(--hfy-ink); line-height: 1.1;
}
.hfy-fig span {
  font-size: .7rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--hfy-quiet);
}

/* ---------------------------------------------------------------------------
   comparison
   --------------------------------------------------------------------------- */

.hfy-versus {
  display: flex; flex-wrap: wrap;
  border: 1px solid var(--hfy-rule);
  border-radius: var(--hfy-r-lg); overflow: hidden;
}
.hfy-versus__side { flex: 1 1 300px; min-width: 0; background: #fff; padding: 30px 28px; }
.hfy-versus__side--ours { background: var(--hfy-ink); color: #E6DCCB; }
.hfy-versus h3 {
  font-size: .72rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--hfy-quiet); margin-bottom: var(--hfy-gap);
}
.hfy-versus__side--ours h3 { color: var(--hfy-amber); }
.hfy-versus ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.hfy-versus li { position: relative; padding-left: 24px; font-size: .93rem; }
.hfy-versus li::before {
  content: ""; position: absolute; left: 2px; top: .52em;
  width: 9px; height: 2px; border-radius: 2px; background: var(--hfy-quiet);
}
.hfy-versus__side--ours li::before {
  width: 12px; height: 7px; background: none; top: .42em;
  border-left: 2.2px solid var(--hfy-amber);
  border-bottom: 2.2px solid var(--hfy-amber);
  transform: rotate(-45deg);
}

/* ---------------------------------------------------------------------------
   questions
   --------------------------------------------------------------------------- */

.hfy-qas { display: flex; flex-direction: column; gap: 10px; }
.hfy-qa {
  background: #fff; border: 1px solid var(--hfy-rule);
  border-radius: var(--hfy-r); padding: 0 22px;
}
.hfy-qa[open] { border-color: var(--hfy-rule-2); }
.hfy-qa > summary {
  list-style: none; cursor: pointer; position: relative;
  padding: 19px 42px 19px 0;
  font-family: var(--hfy-display); font-weight: 600; font-size: 1rem;
  color: var(--hfy-ink);
}
.hfy-qa > summary::-webkit-details-marker { display: none; }
.hfy-qa > summary::after {
  content: ""; position: absolute; right: 4px; top: 50%;
  width: 10px; height: 10px; margin-top: -7px;
  border-right: 2.4px solid var(--hfy-bronze);
  border-bottom: 2.4px solid var(--hfy-bronze);
  transform: rotate(45deg);
  transition: transform .18s ease;
}
.hfy-qa[open] > summary::after { transform: rotate(-135deg); margin-top: -2px; }
.hfy-qa__a { padding: 0 42px 20px 0; font-size: .95rem; }

/* ---------------------------------------------------------------------------
   links, ordering, closing
   --------------------------------------------------------------------------- */

.hfy-refs {
  list-style: none; margin: 0 auto; padding: 0; max-width: 64ch;
  display: flex; flex-direction: column; gap: 11px;
}
.hfy-refs li {
  background: #fff; border: 1px solid var(--hfy-rule);
  border-radius: var(--hfy-r); padding: 15px 20px;
}
.hfy-refs a { font-size: .94rem; }

.hfy-close {
  position: relative; overflow: hidden;
  background: var(--hfy-ink); color: #E6DCCB;
  border-radius: 28px; padding: clamp(32px, 5vw, 60px); text-align: center;
}
.hfy-close::before {
  content: ""; position: absolute; left: 50%; top: -40%;
  width: 420px; height: 420px; transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227, 155, 31, .22), transparent 66%);
  pointer-events: none;
}
.hfy-close > * { position: relative; }
.hfy-close h2 { color: #fff; margin-inline: auto; }
.hfy-close img { margin: var(--hfy-gap-3) auto; }
.hfy-close__was { font-size: .88rem; color: #A2937E; text-decoration: line-through; }
.hfy-close__now {
  font-family: var(--hfy-display); font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2.05rem); color: var(--hfy-amber);
  margin: 6px 0 var(--hfy-gap-3);
}

/* ---------------------------------------------------------------------------
   inner pages
   --------------------------------------------------------------------------- */

.hfy-trail {
  background: var(--hfy-oat); border-bottom: 1px solid var(--hfy-rule);
  font-size: .83rem;
}
.hfy-trail .hfy-hold {
  display: flex; flex-wrap: wrap; align-items: center; gap: 9px;
  padding-block: 11px;
}
.hfy-trail a { color: var(--hfy-quiet); text-decoration: none; }
.hfy-trail a:hover { color: var(--hfy-bronze); }
.hfy-trail b { color: var(--hfy-ink); font-weight: 700; }
.hfy-trail span { color: var(--hfy-quiet); }

.hfy-lede {
  background: linear-gradient(180deg, var(--hfy-honey), var(--hfy-oat));
  padding-block: var(--hfy-gap-4) var(--hfy-gap-3);
  text-align: center;
}
.hfy-lede h1 { font-size: clamp(1.85rem, 4vw, 2.7rem); max-width: 22ch; margin-inline: auto; }
.hfy-lede__text { max-width: 60ch; margin: var(--hfy-gap) auto 0; color: var(--hfy-quiet); }

.hfy-sheet { display: flex; flex-wrap: wrap; gap: var(--hfy-gap-4); align-items: flex-start; padding-block: var(--hfy-gap-4); }
.hfy-copy { flex: 1 1 460px; min-width: 0; font-size: 1.01rem; }
.hfy-copy h2 {
  font-size: clamp(1.28rem, 2.4vw, 1.62rem); max-width: none;
  margin: var(--hfy-gap-4) 0 var(--hfy-gap);
  padding-top: var(--hfy-gap-2);
  border-top: 1px solid var(--hfy-rule);
}
.hfy-copy h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.hfy-copy h3 { font-size: 1.08rem; margin: var(--hfy-gap-2) 0 6px; }
.hfy-copy ul, .hfy-copy ol { margin: 0 0 var(--hfy-gap); padding-left: 22px; }
.hfy-copy li { margin-bottom: 8px; }

.hfy-rail {
  flex: 0 1 310px; min-width: 0;
  position: relative;
  background: var(--hfy-oat); border: 1px solid var(--hfy-rule);
  border-radius: var(--hfy-r-lg); padding: 28px 26px;
}
.hfy-rail::before {
  content: ""; position: absolute; left: 26px; right: 26px; top: 0;
  height: 3px; border-radius: 0 0 3px 3px; background: var(--hfy-amber);
}
.hfy-rail img { width: 104px; margin: 0 auto var(--hfy-gap); }
.hfy-rail h3 { font-size: 1.08rem; margin-bottom: 9px; }
.hfy-rail p { font-size: .91rem; }

.hfy-shot--fig {
  margin: 0 0 var(--hfy-gap-2);
  border: 1px solid var(--hfy-rule); border-radius: var(--hfy-r-lg);
  overflow: hidden; background: #fff; display: block;
}
.hfy-shot--fig img { width: 100%; }
.hfy-shot--fig figcaption {
  padding: 12px 18px; font-size: .84rem; color: var(--hfy-quiet);
  border-top: 1px solid var(--hfy-rule);
}

.hfy-entry { border-bottom: 1px solid var(--hfy-rule); padding-bottom: var(--hfy-gap-3); margin-bottom: var(--hfy-gap-3); }
.hfy-entry:last-of-type { border-bottom: 0; }
.hfy-entry h2 { margin-top: 0; padding-top: 0; border-top: 0; }
.hfy-entry h2 a { color: inherit; text-decoration: none; }
.hfy-entry h2 a:hover { color: var(--hfy-bronze); }
.hfy-stamp {
  display: inline-block; font-size: .73rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--hfy-bronze); margin-bottom: 7px;
}
.hfy-onward { font-family: var(--hfy-display); font-weight: 700; font-size: .92rem; text-decoration: none; }
.hfy-onward:hover { text-decoration: underline; }
.hfy-byline {
  font-size: .85rem; color: var(--hfy-quiet);
  padding-bottom: var(--hfy-gap); margin-bottom: var(--hfy-gap-2);
  border-bottom: 1px solid var(--hfy-rule);
}
.hfy-nextprev { margin-top: var(--hfy-gap-3); padding-top: var(--hfy-gap-2); border-top: 1px solid var(--hfy-rule); }
.hfy-nextprev ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 11px; }
.hfy-nextprev li { flex: 1 1 240px; min-width: 0; }
.hfy-nextprev a {
  display: block; background: var(--hfy-oat);
  border: 1px solid var(--hfy-rule); border-radius: var(--hfy-r);
  padding: 14px 18px; text-decoration: none;
  font-family: var(--hfy-display); font-weight: 600; font-size: .93rem;
  color: var(--hfy-ink);
}
.hfy-nextprev a:hover { border-color: var(--hfy-amber); color: var(--hfy-bronze); }

.hfy-missing { padding-block: var(--hfy-band); text-align: center; }

/* ---------------------------------------------------------------------------
   footer
   --------------------------------------------------------------------------- */

.hfy-foot {
  background: var(--hfy-night); color: #9C9AA8;
  padding-block: var(--hfy-gap-4) var(--hfy-gap-2);
  font-size: .92rem;
}
.hfy-foot__top { display: flex; flex-wrap: wrap; gap: var(--hfy-gap-3); }
.hfy-foot__brand { flex: 2 1 330px; min-width: 0; }
.hfy-foot__col { flex: 1 1 170px; min-width: 0; }
.hfy-foot__label {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--hfy-display); font-weight: 700;
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--hfy-amber); margin: 0 0 var(--hfy-gap);
}
.hfy-foot__label::before {
  content: ""; width: 8px; height: 8px; flex: 0 0 auto;
  background: var(--hfy-amber); transform: rotate(45deg);
}
.hfy-foot__col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.hfy-foot__col a { color: #D6D3DE; text-decoration: none; font-size: .95rem; }
.hfy-foot__col a:hover { color: var(--hfy-amber); }

.hfy-brand--foot { color: #fff; align-items: flex-start; }
.hfy-brand--foot span { display: flex; flex-direction: column; line-height: 1.1; }
.hfy-brand--foot em { font-style: normal; white-space: nowrap; }
.hfy-brand--foot b { color: var(--hfy-amber); }
.hfy-brand--foot i {
  font-style: normal; font-family: var(--hfy-text); font-weight: 500;
  font-size: .62rem; letter-spacing: .22em; text-transform: uppercase;
  color: #8F8C9C; margin-top: 6px;
}
.hfy-foot__brand p { margin: var(--hfy-gap) 0 0; max-width: 46ch; font-size: .9rem; }

.hfy-seals { display: flex; flex-wrap: wrap; gap: 11px; margin-top: var(--hfy-gap-2); }
.hfy-seal {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  width: 60px; height: 60px; border-radius: var(--hfy-r-sm);
  background: #fff; color: var(--hfy-ink); text-align: center;
}
.hfy-seal b { font-family: var(--hfy-display); font-weight: 800; font-size: .72rem; letter-spacing: .04em; }
.hfy-seal i { font-style: normal; font-size: .56rem; letter-spacing: .1em; text-transform: uppercase; color: var(--hfy-quiet); }

.hfy-foot__pay {
  display: flex; flex-wrap: wrap; align-items: center; gap: var(--hfy-gap);
  margin-top: var(--hfy-gap-3); padding-top: var(--hfy-gap-2);
  border-top: 1px solid rgba(255, 255, 255, .1);
}
.hfy-cards { display: flex; flex-wrap: wrap; gap: 9px; }
.hfy-card-mark {
  background: #fff; color: #1B1B22; border-radius: 6px;
  padding: 7px 13px;
  font-family: var(--hfy-display); font-weight: 800; font-size: .72rem;
  letter-spacing: .06em;
}
.hfy-secure { color: #62D08A; font-weight: 600; font-size: .89rem; }

.hfy-foot__reach, .hfy-foot__by, .hfy-foot__legal {
  margin-top: var(--hfy-gap-2); padding-top: var(--hfy-gap-2);
  border-top: 1px solid rgba(255, 255, 255, .1);
}
.hfy-foot__reach p { margin-bottom: 5px; font-size: .91rem; }
.hfy-foot__reach b { color: #fff; }
.hfy-foot__reach a { color: #D6D3DE; }
.hfy-foot__by p { margin-bottom: 5px; font-size: .87rem; }
.hfy-foot__by b { color: #fff; }
.hfy-foot__by a { color: #D6D3DE; }
.hfy-foot__legal { font-size: .81rem; line-height: 1.62; }
.hfy-foot__legal p { margin-bottom: 11px; }
.hfy-foot__legal b { color: #C7C4D2; }
.hfy-foot__mark {
  margin: var(--hfy-gap-2) 0 0; padding-top: var(--hfy-gap);
  border-top: 1px solid rgba(255, 255, 255, .1);
  text-align: center; font-size: .78rem; color: #6F6D7B;
}

/* ===========================================================================
   responsive — flex handles most of it; these are the deliberate switches
   =========================================================================== */

@media (min-width: 760px) {
  .hfy-hero__flex { flex-direction: row; align-items: center; }
  .hfy-supply--best .hfy-supply__art { height: 250px; }
}

@media (min-width: 980px) {
  .hfy-nav { display: flex; }
  .hfy-toggle, .hfy-drawer { display: none; }
  .hfy-supply--best { transform: translateY(-16px); }
  .hfy-sheet { flex-wrap: nowrap; }
}

@media (max-width: 759px) {
  .hfy-hero::before { left: 50%; margin-left: -160px; top: 4%; }
  .hfy-tag { right: 6%; }
  .hfy-close { border-radius: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
