

@font-face{font-family:"Anton";font-style:normal;font-weight:400;font-display:swap;src:url(/assets/fonts/anton.woff2) format("woff2");}
@font-face{font-family:"Plus Jakarta Sans";font-style:normal;font-weight:200 800;font-display:swap;src:url(/assets/fonts/plus-jakarta-sans.woff2) format("woff2");}
@font-face{font-family:"IBM Plex Mono";font-style:normal;font-weight:500;font-display:swap;src:url(/assets/fonts/ibm-plex-mono.woff2) format("woff2");}

  /* ============================================================
     HAUFF — "Warm Bold" homepage mockup
     Warm cream base · confident teal color-blocks · bold Anton
     Fonts injected later by operator; we use family names only.
     ============================================================ */

  .hauff * { box-sizing: border-box; }

  .hauff {
    /* palette */
    --cream:      #F4F2EC;
    --cream-deep: #ECE8DD;
    --sand:       #E7E1D2;
    --card:       #FBFAF6;
    --navy:       #1F2A44;
    --navy-soft:  #46506A;
    --navy-mute:  #6C7488;
    --navy-ink:   #14203A;   /* deep navy — text on teal color-blocks (accurate-teal legibility) */
    --teal:       #14A39A;   /* accurate packaging teal */
    --teal-deep:  #0E837B;   /* darker teal — gradients / hover / depth / teal-on-light text */
    --teal-ink:   #0E837B;   /* dark teal ink for small labels on light */
    --red:        #E4383B;
    --line:       #DED8C8;
    --hero-photo: url("/assets/img/bg-1.webp");

    /* type */
    --display: "Anton", Impact, "Arial Narrow", sans-serif;
    --body: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, sans-serif;
    --mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

    background: var(--cream);
    color: var(--navy);
    font-family: var(--body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: clip;
    position: relative;
  }

  .hauff img { max-width: 100%; display: block; }
@media (max-width: 559px){ .hf-brand__desc{ display: none; } .hf-nav__cta .hf-btn{ padding: 10px 14px; font-size: 13px; } }
  .hauff a:not(.hf-btn) { color: inherit; text-decoration: none; }

  /* ---- shared building blocks ---- */
  .hf-wrap { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 22px; }

  .hf-eyebrow {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--teal-ink);
    display: inline-flex;
    align-items: center;
    gap: 9px;
  }
  .hf-eyebrow .idx { color: var(--red); font-weight: 600; }
  .hf-eyebrow.on-dark { color: var(--navy-ink); }
  .hf-eyebrow.on-dark .idx { color: var(--navy-ink); }

  .hf-display {
    font-family: var(--display);
    text-transform: uppercase;
    font-weight: 400;
    line-height: 0.92;
    letter-spacing: 0.005em;
    margin: 0;
  }

  .hf-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: var(--body);
    font-weight: 700;
    font-size: 15px;
    line-height: 1;
    padding: 15px 22px;
    border-radius: 999px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform .18s ease, background-color .18s ease, color .18s ease, border-color .18s ease;
  }
  .hf-btn svg { width: 17px; height: 17px; }
  .hf-btn--teal { background: var(--teal); color: var(--navy-ink); }
  .hf-btn--teal:hover { background: var(--navy); color: #FBFAF6; transform: translateY(-2px); }
  .hf-btn--navy { background: var(--navy); color: #FBFAF6; }
  .hf-btn--navy:hover { background: #16203a; transform: translateY(-2px); }
  .hf-btn--ghost { background: transparent; color: var(--navy); border-color: var(--navy); }
  .hf-btn--ghost:hover { background: var(--navy); color: #FBFAF6; transform: translateY(-2px); }
  .hf-btn--onteal { background: #FBFAF6; color: var(--navy-ink); }
  .hf-btn--onteal:hover { background: var(--navy); color: #FBFAF6; transform: translateY(-2px); }
  .hf-btn--outteal { background: rgba(0,0,0,0.28); color: #FBFAF6; border-color: rgba(251,250,246,0.72); }
  .hf-btn--outteal:hover { background: rgba(251,250,246,0.12); border-color: #FBFAF6; transform: translateY(-2px); }

  .hauff a:focus-visible,
  .hauff button:focus-visible {
    outline: 3px solid var(--red);
    outline-offset: 3px;
    border-radius: 6px;
  }

  .hf-skip {
    position: absolute; left: 12px; top: -60px;
    background: var(--navy); color: #FBFAF6;
    padding: 10px 16px; border-radius: 10px; z-index: 200;
    font-weight: 700; transition: top .2s ease;
  }
  .hf-skip:focus { top: 12px; }

  /* ============================================================
     NAV
     ============================================================ */
  .hf-nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(244,242,236,0.86);
    backdrop-filter: saturate(140%) blur(10px);
    border-bottom: 1px solid var(--line);
  }
  .hf-nav__inner {
    display: flex; align-items: center; gap: 18px;
    min-height: 72px;
  }
  .hf-brand { display: flex; align-items: center; gap: 12px; flex: 0 0 auto; }
  .hf-brand img { height: 30px; width: auto; }
  .hf-brand__desc {
    font-family: var(--mono);
    font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--navy-mute);
    border-left: 1px solid var(--line);
    padding-left: 12px;
    line-height: 1.3;
    max-width: 130px;
  }
  .hf-navlinks { display: none; margin-left: auto; align-items: center; gap: 6px; }
  .hf-navlinks a {
    font-weight: 600; font-size: 15px; color: var(--navy-soft);
    padding: 9px 14px; border-radius: 999px; transition: color .15s, background-color .15s;
  }
  .hf-navlinks a:hover { color: var(--navy); background: var(--cream-deep); }
  .hf-nav__cta { margin-left: auto; }
  .hf-nav__cta .hf-btn { padding: 12px 18px; font-size: 14px; }

  @media (min-width: 900px) {
    .hf-navlinks { display: flex; }
    .hf-nav__cta { margin-left: 6px; }
  }

  /* ============================================================
     HERO
     ============================================================ */
  .hf-hero { padding: 46px 0 30px; }
  .hf-hero__grid {
    display: grid; grid-template-columns: 1fr; gap: 30px; align-items: center;
  }
  .hf-hero__head { display: block; }
  .hf-hero h1 {
    font-family: var(--display);
    text-transform: uppercase;
    font-weight: 400;
    line-height: 0.90;
    letter-spacing: 0.004em;
    margin: 18px 0 0;
    font-size: clamp(52px, 12.5vw, 116px);
    color: var(--navy);
  }
  .hf-hero h1 .accent {
    color: var(--teal-deep);
    position: relative;
    display: inline-block;
  }
  .hf-hero h1 .bang { color: var(--red); }
  .hf-hero__sub {
    margin: 22px 0 0;
    font-size: clamp(16px, 2.3vw, 19px);
    color: var(--navy-soft);
    max-width: 30em;
  }
  .hf-hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

  /* right-side editorial panel: teal color-block with the routine + stat */
  .hf-hero__panel {
    background: var(--teal);
    color: var(--navy-ink);
    border-radius: 26px 26px 8px 26px;
    padding: 30px 28px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 26px 60px -34px rgba(11,63,59,0.55);
  }
  .hf-hero__panel::after {
    content: "";
    position: absolute; right: -70px; bottom: -70px;
    width: 200px; height: 200px; border-radius: 50%;
    background: rgba(20,32,58,0.06);
  }
  .hf-hero__panel h2 {
    font-family: var(--display); text-transform: uppercase; font-weight: 400;
    font-size: clamp(30px, 6vw, 40px); line-height: 0.95; margin: 14px 0 0;
    color: var(--navy-ink);
  }
  .hf-routine { list-style: none; margin: 20px 0 0; padding: 0; display: grid; gap: 2px; position: relative; z-index: 1; }
  .hf-routine li {
    display: flex; align-items: baseline; gap: 14px;
    padding: 11px 0; border-top: 1px solid rgba(20,32,58,0.22);
    font-size: 15px;
  }
  .hf-routine li:last-child { border-bottom: 1px solid rgba(20,32,58,0.22); }
  .hf-routine .step {
    font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em;
    color: rgba(20,32,58,0.6); flex: 0 0 auto; width: 26px;
  }
  .hf-routine .txt { font-weight: 600; color: var(--navy-ink); }

  @media (min-width: 940px) {
    .hf-hero { padding: 62px 0 40px; }
    .hf-hero__grid { grid-template-columns: 1.28fr 0.9fr; gap: 46px; }
  }

  /* ============================================================
     PROMISE BAR
     ============================================================ */
  .hf-promise { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--cream-deep); }
  .hf-promise__grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  }
  .hf-promise__item {
    display: flex; align-items: center; gap: 14px;
    padding: 22px 20px;
  }
  .hf-promise__item + .hf-promise__item { border-left: 1px solid var(--line); }
  .hf-promise__item:nth-child(3) { border-left: none; border-top: 1px solid var(--line); }
  .hf-promise__item:nth-child(4) { border-top: 1px solid var(--line); }
  .hf-promise__ic {
    flex: 0 0 auto; width: 42px; height: 42px; border-radius: 12px;
    background: var(--card); border: 1px solid var(--line);
    display: grid; place-items: center;
  }
  .hf-promise__ic svg { width: 22px; height: 22px; stroke: var(--teal); }
  .hf-promise__t {
    font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--navy-mute); line-height: 1.4;
  }
  .hf-promise__t strong { display: block; font-family: var(--body); font-size: 15px; letter-spacing: 0; text-transform: none; color: var(--navy); font-weight: 700; }
  @media (min-width: 820px) {
    .hf-promise__grid { grid-template-columns: repeat(4, 1fr); }
    .hf-promise__item:nth-child(3), .hf-promise__item:nth-child(4) { border-top: none; }
    .hf-promise__item:nth-child(3) { border-left: 1px solid var(--line); }
  }

  /* ============================================================
     STORY (teal full color-block band)
     ============================================================ */
  .hf-story { background: var(--teal); color: var(--navy-ink); padding: 62px 0; }
  .hf-story__grid { display: grid; grid-template-columns: 1fr; gap: 26px; align-items: end; }
  .hf-story h2 {
    font-family: var(--display); text-transform: uppercase; font-weight: 400;
    font-size: clamp(34px, 6.6vw, 62px); line-height: 0.94; margin: 16px 0 0;
    color: var(--navy-ink); max-width: 12ch;
  }
  .hf-story h2 em { font-style: normal; color: var(--navy-ink); }
  .hf-story__body p { color: var(--navy-ink); font-size: 17px; margin: 0 0 16px; max-width: 40ch; }
  .hf-story__seal {
    display: inline-flex; gap: 10px; flex-wrap: wrap; margin-top: 4px;
  }
  .hf-chip {
    font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
    padding: 8px 14px; border-radius: 999px;
    border: 1px solid rgba(20,32,58,0.4); color: var(--navy-ink);
  }
  @media (min-width: 900px) {
    .hf-story__grid { grid-template-columns: 1.1fr 0.9fr; gap: 60px; }
  }

  /* ============================================================
     PRODUCTS
     ============================================================ */
  .hf-products { padding: 66px 0 20px; }
  .hf-sec-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 18px; margin-bottom: 40px; }
  .hf-sec-head h2 {
    font-family: var(--display); text-transform: uppercase; font-weight: 400;
    font-size: clamp(32px, 6vw, 58px); line-height: 0.94; margin: 12px 0 0; color: var(--navy);
  }
  .hf-sec-head p { color: var(--navy-soft); margin: 0; max-width: 44ch; font-size: 15.5px; }

  /* three-step routine */
  .hf-steps { display: grid; gap: 34px; }
  @media (min-width: 980px) { .hf-steps { gap: 42px; } }

  .hf-step__head {
    display: flex; align-items: flex-start; gap: 16px;
    padding-bottom: 16px; margin-bottom: 20px;
    border-bottom: 2px solid var(--line);
  }
  .hf-step__no {
    font-family: var(--display); font-weight: 400; text-transform: uppercase;
    font-size: clamp(42px, 7.5vw, 62px); line-height: 0.72; color: var(--teal-deep);
    flex: 0 0 auto;
  }
  .hf-step__titles { padding-top: 3px; }
  .hf-step__title {
    font-family: var(--display); text-transform: uppercase; font-weight: 400;
    font-size: clamp(26px, 4.6vw, 40px); line-height: 0.94; margin: 0; color: var(--navy);
  }
  .hf-step__sub { color: var(--navy-soft); margin: 6px 0 0; font-size: 15px; }

  .hf-step__cards { display: grid; grid-template-columns: 1fr; gap: 18px; }
  @media (min-width: 720px) { .hf-step__cards--two { grid-template-columns: 1fr 1fr; } }

  .hf-prod {
    background: var(--card); border: 1px solid var(--line);
    border-radius: 20px; padding: 24px 22px 20px;
    display: flex; flex-direction: column; gap: 12px;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  }
  .hf-prod:hover { transform: translateY(-4px); box-shadow: 0 26px 46px -30px rgba(31,42,68,0.5); border-color: #CDC6B4; }
  .hf-prod__kicker {
    align-self: flex-start;
    font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--navy-ink); background: var(--teal); padding: 6px 12px; border-radius: 999px;
  }
  .hf-prod__name { font-family: var(--body); font-weight: 800; font-size: 18.5px; line-height: 1.28; margin: 0; color: var(--navy); }
  .hf-prod__benefit { color: var(--navy-soft); font-size: 14.5px; line-height: 1.55; margin: 0; }
  .hf-prod__meta { display: grid; gap: 12px; margin: 2px 0 0; }
  .hf-prod__row { margin: 0; font-size: 14px; color: var(--navy); line-height: 1.5; }
  .hf-lbl {
    display: block; font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--navy-mute); margin-bottom: 4px;
  }
  .hf-prod__tags { display: flex; flex-wrap: wrap; gap: 7px; }
  .hf-tag {
    font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.04em; line-height: 1.2;
    color: var(--navy); background: rgba(20,163,154,0.10);
    border: 1px solid rgba(20,163,154,0.34); padding: 5px 10px; border-radius: 8px;
  }
  .hf-prod__foot {
    font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.03em; color: var(--navy-mute);
    margin: 6px 0 0; padding-top: 12px; border-top: 1px solid var(--line); line-height: 1.5;
  }

  .hf-market {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
    gap: 16px; margin-top: 34px; padding: 22px 24px;
    background: var(--cream-deep); border: 1px solid var(--line); border-radius: 18px;
  }
  .hf-market p { margin: 0; font-weight: 600; color: var(--navy); font-size: 15px; }
  .hf-market .hf-btn { flex: 0 0 auto; }

  /* ============================================================
     FORMULATION / CERTIFIED
     ============================================================ */
  .hf-formula { padding: 60px 0; }
  .hf-formula__box {
    background: var(--card); border: 1px solid var(--line);
    border-radius: 24px; padding: clamp(26px, 4vw, 44px);
    display: grid; grid-template-columns: 1fr; gap: 28px; align-items: center;
  }
  .hf-formula h2 {
    font-family: var(--display); text-transform: uppercase; font-weight: 400;
    font-size: clamp(28px, 5vw, 46px); line-height: 0.96; margin: 12px 0 0; color: var(--navy);
  }
  .hf-freelist { list-style: none; margin: 18px 0 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; }
  .hf-freelist li { display: flex; align-items: center; gap: 10px; font-weight: 600; color: var(--navy); font-size: 15px; }
  .hf-freelist svg { width: 20px; height: 20px; stroke: var(--teal); flex: 0 0 auto; }
  .hf-cert {
    background: var(--navy); color: #EBF3F1; border-radius: 18px; padding: 26px 24px;
  }
  .hf-cert .hf-eyebrow { color: #BFE9E4; }
  .hf-cert__row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 16px; }
  .hf-cert__seal {
    flex: 1 1 130px; min-width: 130px;
    border: 1px solid rgba(255,255,255,0.2); border-radius: 14px; padding: 16px;
  }
  .hf-cert__seal .k { font-family: var(--display); font-weight: 400; font-size: 30px; line-height: 1; color: #FBFAF6; text-transform: uppercase; }
  .hf-cert__seal .v { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: #A9C7C3; margin-top: 8px; }
  @media (min-width: 860px) {
    .hf-formula__box { grid-template-columns: 1.15fr 0.85fr; gap: 44px; }
  }

  /* ============================================================
     TRUST / STATS
     ============================================================ */
  .hf-trust { padding: 8px 0 66px; }
  .hf-trust__grid { display: grid; grid-template-columns: 1fr; gap: 22px; align-items: center; }
  .hf-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .hf-stat {
    background: var(--card); border: 1px solid var(--line); border-radius: 18px;
    padding: 22px 20px;
  }
  .hf-stat .n { font-family: var(--display); font-weight: 400; font-size: clamp(40px, 7vw, 58px); line-height: 0.85; color: var(--navy); text-transform: uppercase; }
  .hf-stat .n .u { color: var(--teal-deep); }
  .hf-stat .l { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--navy-mute); margin-top: 12px; }
  .hf-stat--accent { background: var(--navy); }
  .hf-stat--accent .n { color: #FBFAF6; }
  .hf-stat--accent .l { color: #9FB0C0; }

  .hf-trust__copy h2 {
    font-family: var(--display); text-transform: uppercase; font-weight: 400;
    font-size: clamp(28px, 5vw, 46px); line-height: 0.96; margin: 12px 0 0; color: var(--navy);
  }
  .hf-trust__copy p { color: var(--navy-soft); margin: 14px 0 0; max-width: 40ch; }
  .hf-shops { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
  .hf-shop {
    font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase;
    padding: 9px 15px; border-radius: 999px; border: 1px solid var(--line); background: var(--cream-deep);
    color: var(--navy); font-weight: 500;
    transition: background-color .15s, transform .15s;
  }
  .hf-shop:hover { background: var(--card); transform: translateY(-2px); }
  @media (min-width: 900px) {
    .hf-trust__grid { grid-template-columns: 0.9fr 1.1fr; gap: 46px; }
    .hf-stats { grid-template-columns: 1fr 1fr; }
  }

  /* ============================================================
     CTA BAND (dark photo band — reuses hero image via --hero-photo)
     ============================================================ */
  .hf-cta { position: relative; overflow: hidden; background: #07090a; color: #FBFAF6; isolation: isolate; }
  .hf-cta__bg {
    position: absolute; inset: 0; z-index: 0;
    background-image: var(--hero-photo);
    background-size: cover; background-repeat: no-repeat; background-position: center;
  }
  .hf-cta__overlay {
    position: absolute; inset: 0; z-index: 1;
    background: rgba(0,0,0,0.55);
  }
  .hf-cta__inner {
    position: relative; z-index: 2;
    padding: 58px 0; display: grid; grid-template-columns: 1fr; gap: 26px; align-items: center;
  }
  .hf-cta h2 {
    font-family: var(--display); text-transform: uppercase; font-weight: 400;
    font-size: clamp(34px, 6.5vw, 66px); line-height: 0.92; margin: 14px 0 0; color: #FBFAF6; max-width: 14ch;
  }
  .hf-cta p { color: rgba(251,250,246,0.86); margin: 16px 0 0; max-width: 40ch; }
  .hf-cta__actions { display: flex; flex-wrap: wrap; gap: 12px; }
  @media (min-width: 900px) {
    .hf-cta__inner { grid-template-columns: 1.2fr 0.8fr; gap: 50px; }
    .hf-cta__actions { justify-content: flex-end; }
  }

  /* ============================================================
     FOOTER
     ============================================================ */
  .hf-foot { background: var(--navy); color: #C6CEDC; padding: 62px 0 34px; }
  .hf-foot a:hover { color: #FBFAF6; }
  .hf-foot__top { display: grid; grid-template-columns: 1fr; gap: 38px; }
  .hf-foot__brand img { height: 30px; width: auto; filter: brightness(0) invert(1); }
  .hf-foot__co { font-family: var(--display); text-transform: uppercase; font-weight: 400; font-size: clamp(22px, 4vw, 30px); color: #FBFAF6; margin: 18px 0 0; line-height: 1; letter-spacing: 0.01em; }
  .hf-foot__desc { margin: 14px 0 0; max-width: 34ch; font-size: 14.5px; color: #AEB8C8; }
  .hf-foot__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 30px 24px; }
  .hf-foot__col h4 {
    font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
    color: #8FA6B8; margin: 0 0 14px; font-weight: 500;
  }
  .hf-foot__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
  .hf-foot__col a, .hf-foot__col li { font-size: 14.5px; color: #C6CEDC; }
  .hf-foot__addr { font-style: normal; font-size: 14.5px; line-height: 1.7; color: #C6CEDC; }
  .hf-social { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
  .hf-social a {
    font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.05em;
    padding: 7px 12px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.16); color: #C6CEDC;
    transition: border-color .15s, background-color .15s;
  }
  .hf-social a:hover { border-color: rgba(255,255,255,0.45); background: rgba(255,255,255,0.06); }
  .hf-foot__bar {
    margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.14);
    display: flex; flex-wrap: wrap; gap: 12px 24px; align-items: center; justify-content: space-between;
  }
  .hf-foot__bar .legal { display: flex; flex-wrap: wrap; gap: 6px 18px; }
  .hf-foot__bar a { font-size: 13.5px; color: #AEB8C8; }
  .hf-foot__bar .cr { font-family: var(--mono); font-size: 12px; letter-spacing: 0.05em; color: #8FA6B8; }
  .hf-foot__nib { font-family: var(--mono); font-size: 12px; letter-spacing: 0.05em; color: #8FA6B8; }
  @media (min-width: 760px) {
    .hf-foot__top { grid-template-columns: 1.15fr 1.85fr; gap: 54px; }
    .hf-foot__cols { grid-template-columns: 1fr 1fr 1fr; }
  }

  /* ---- motion / a11y ---- */
  @media (prefers-reduced-motion: reduce) {
    .hauff *, .hauff *::before, .hauff *::after { transition: none !important; animation: none !important; }
  }

  /* ============================================================
     HYBRID v3 ADDITIONS — dark photo hero, product media, smoke divider
     ============================================================ */
  .hf-eyebrow--onphoto { color: #34d3c6; }
  .hf-eyebrow--onphoto .idx { color: var(--red); }

  .hf-btn--ghostlight { background: #FBFAF6; color: var(--navy-ink); border-color: #FBFAF6; }
  .hf-btn--ghostlight:hover { background: transparent; color: #FBFAF6; border-color: #FBFAF6; transform: translateY(-2px); }

  /* ---- DARK DRAMATIC HERO ---- */
  .hf-hero.hf-hero--dark {
    position: relative; overflow: hidden; padding: 0;
    background: #07090a; isolation: isolate;
  }
  .hf-hero__bg {
    position: absolute; inset: 0; z-index: 0;
    background-image: var(--hero-photo);
    background-size: cover; background-repeat: no-repeat;
    background-position: 64% center;
  }
  .hf-hero__overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(180deg, rgba(6,8,9,0.52) 0%, rgba(6,8,9,0.80) 100%);
  }
  .hf-hero--dark .hf-wrap { position: relative; z-index: 2; }
  .hf-hero__content { max-width: 620px; padding: 62px 0 66px; }
  .hf-hero--dark h1 {
    color: #FBFAF6; margin: 16px 0 0;
    font-size: clamp(48px, 10vw, 104px);
  }
  .hf-hero--dark h1 .accent { color: #14A39A; }
  .hf-hero--dark h1 .bang { color: var(--red); }
  .hf-hero--dark .hf-hero__sub { color: rgba(251,250,246,0.84); max-width: 34em; }
  .hf-hero--dark .hf-hero__cta { margin-top: 28px; }
  .hf-hero__mini {
    list-style: none; margin: 28px 0 0; padding: 0;
    display: flex; flex-wrap: wrap; gap: 10px 26px;
  }
  .hf-hero__mini li {
    display: inline-flex; align-items: baseline; gap: 8px;
    font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em;
    text-transform: uppercase; color: rgba(251,250,246,0.74);
  }
  .hf-hero__mini .s { color: #34d3c6; font-weight: 600; }
  @media (min-width: 760px) {
    .hf-hero__bg { background-position: center right; }
    .hf-hero__overlay {
      background: linear-gradient(90deg, rgba(6,8,9,0.94) 0%, rgba(6,8,9,0.82) 30%, rgba(6,8,9,0.44) 62%, rgba(6,8,9,0.12) 100%);
    }
    .hf-hero__content { padding: 104px 0 112px; max-width: 640px; }
  }

  /* ---- PRODUCT MEDIA (photo on cards) ---- */
  .hf-prod__media {
    align-self: stretch; margin: 0 0 8px;
    height: clamp(280px, 34vw, 360px);
    border-radius: 14px; overflow: hidden;
    background: #FBFAF6;
    border: 1px solid var(--line);
    padding: 8px; box-sizing: border-box;
    display: flex; align-items: center; justify-content: center;
  }
  .hf-prod__media img {
    width: 100%; height: 100%;
    object-fit: contain; object-position: center;
    display: block;
  }

  /* ---- SMOKE DIVIDER (deliberate dark accent block) ---- */
  .hf-smoke { position: relative; overflow: hidden; background: #07090a; isolation: isolate; }
  .hf-smoke__bg {
    position: absolute; inset: 0; z-index: 0;
    background-image: url("/assets/img/bg-2.webp");
    background-size: cover; background-repeat: no-repeat; background-position: center 34%;
  }
  .hf-smoke__overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(180deg, rgba(6,8,9,0.58) 0%, rgba(6,8,9,0.34) 46%, rgba(6,8,9,0.64) 100%);
  }
  .hf-wrap.hf-smoke__inner {
    position: relative; z-index: 2;
    padding: 78px 22px; display: flex; flex-direction: column;
    align-items: flex-start; gap: 14px;
  }
  .hf-smoke__line {
    font-family: var(--display); text-transform: uppercase; font-weight: 400;
    color: #FBFAF6; margin: 0; letter-spacing: 0.01em;
    font-size: clamp(30px, 6vw, 58px); line-height: 0.96; max-width: 18ch;
  }
  .hf-smoke__line em { font-style: normal; color: #14A39A; }
  @media (min-width: 760px) { .hf-wrap.hf-smoke__inner { padding: 110px 22px; } }


  /* ============================================================
     MULTI-PAGE ROUTING ADDITIONS (Warm Bold — reuses palette/type)
     ============================================================ */
  .hauff [data-page][hidden] { display: none !important; }

  /* --- mobile nav disclosure --- */
  .hf-navtoggle {
    display: inline-flex; align-items: center; gap: 8px; margin-left: auto;
    font-family: var(--body); font-weight: 700; font-size: 14px; line-height: 1;
    color: var(--navy); background: transparent; border: 2px solid var(--navy);
    padding: 10px 14px; border-radius: 999px; cursor: pointer;
    transition: background-color .15s, color .15s;
  }
  .hf-navtoggle:hover { background: var(--navy); color: #FBFAF6; }
  .hf-navtoggle svg { width: 18px; height: 18px; }
  .hf-navlinks a[aria-current="page"] { color: var(--navy); background: var(--cream-deep); }
  @media (max-width: 899px) {
    .hf-nav.is-open .hf-navlinks {
      display: flex; flex-direction: column; align-items: stretch; gap: 2px;
      position: absolute; top: 100%; left: 0; right: 0; z-index: 90;
      background: var(--cream); border-bottom: 1px solid var(--line);
      padding: 10px 22px 16px;
      box-shadow: 0 24px 44px -28px rgba(31,42,68,0.55);
    }
    .hf-nav.is-open .hf-navlinks a { font-size: 16px; padding: 13px 12px; border-radius: 12px; }
  }
  @media (min-width: 900px) { .hf-navtoggle { display: none; } }

  /* --- page head --- */
  .hf-pagehead { background: var(--cream-deep); border-bottom: 1px solid var(--line); padding: clamp(44px,7vw,82px) 0 clamp(28px,4.5vw,44px); }
  .hf-pagehead h1 {
    font-family: var(--display); text-transform: uppercase; font-weight: 400;
    font-size: clamp(38px, 8vw, 78px); line-height: 0.94; letter-spacing: 0.005em;
    margin: 14px 0 0; color: var(--navy); max-width: 16ch;
  }
  .hf-pagehead .lead { margin: 18px 0 0; max-width: 62ch; font-size: clamp(16px,2.2vw,19px); color: var(--navy-soft); }
  .hf-pagehead__meta { font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--navy-mute); margin: 16px 0 0; }

  /* --- generic content section --- */
  .hf-section { padding: clamp(38px,5.5vw,60px) 0; }
  .hf-section--tint { background: var(--cream-deep); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .hf-section h2 {
    font-family: var(--display); text-transform: uppercase; font-weight: 400;
    font-size: clamp(26px, 5vw, 46px); line-height: 0.96; margin: 12px 0 0; color: var(--navy);
  }

  /* --- readable prose (~70ch) --- */
  .hf-prose { max-width: 70ch; }
  .hf-prose > h3 { font-family: var(--body); font-weight: 800; font-size: 19px; margin: 28px 0 0; color: var(--navy); }
  .hf-prose p { margin: 16px 0 0; color: var(--navy-soft); font-size: 16px; line-height: 1.75; }
  .hf-prose p:first-child { margin-top: 0; }
  .hf-prose strong { color: var(--navy); font-weight: 700; }
  .hf-prose a { color: var(--teal-deep); text-decoration: underline; text-underline-offset: 3px; }
  .hf-bullets { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 11px; max-width: 70ch; }
  .hf-bullets li { position: relative; padding-left: 26px; color: var(--navy-soft); font-size: 16px; line-height: 1.7; }
  .hf-bullets li::before { content: ""; position: absolute; left: 4px; top: 11px; width: 8px; height: 8px; border-radius: 50%; background: var(--teal); }
  .hf-bullets li strong { color: var(--navy); font-weight: 700; }

  /* --- value cards grid --- */
  .hf-valgrid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 22px; }
  @media (min-width: 680px) { .hf-valgrid { grid-template-columns: 1fr 1fr; } }
  .hf-val { background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 22px 22px 20px; }
  .hf-val .idx { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal-deep); }
  .hf-val h3 { font-family: var(--body); font-weight: 800; font-size: 17px; margin: 8px 0 0; color: var(--navy); }
  .hf-val p { margin: 8px 0 0; color: var(--navy-soft); font-size: 14.5px; line-height: 1.65; }

  /* --- identity / NAP card --- */
  .hf-idcard { background: var(--card); border: 1px solid var(--line); border-radius: 20px; padding: clamp(24px,3vw,34px); max-width: 640px; }
  .hf-idcard .hf-foot__co, .hf-idcard .co { font-family: var(--display); text-transform: uppercase; font-weight: 400; font-size: clamp(22px,4vw,32px); color: var(--navy); line-height: 1; margin: 0; letter-spacing: 0.01em; }
  .hf-idcard .tag { margin: 12px 0 0; color: var(--navy-soft); font-size: 15px; }
  .hf-dl { margin: 22px 0 0; display: grid; gap: 18px; }
  .hf-dl dt { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--navy-mute); margin-bottom: 5px; }
  .hf-dl dd { margin: 0; font-size: 15.5px; color: var(--navy); font-weight: 600; line-height: 1.55; }
  .hf-dl dd a { color: var(--teal-deep); }

  /* --- contact layout + map --- */
  .hf-contact { display: grid; grid-template-columns: 1fr; gap: clamp(22px,3.5vw,34px); align-items: start; }
  @media (min-width: 900px) { .hf-contact { grid-template-columns: 1fr 1fr; } }
  .hf-map { position: relative; min-height: 340px; border: 1px solid var(--line); border-radius: 20px; overflow: hidden; background-color: var(--cream-deep); background-image: linear-gradient(rgba(20,163,154,0.12) 1px, transparent 1px), linear-gradient(90deg, rgba(20,163,154,0.12) 1px, transparent 1px); background-size: 34px 34px, 34px 34px; display: grid; place-items: center; text-align: center; padding: 28px; }
  .hf-map svg { width: 46px; height: 46px; color: var(--teal-deep); margin: 0 auto 14px; display: block; }
  .hf-map__t { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--navy-mute); }
  .hf-map__l { font-weight: 700; color: var(--navy); margin-top: 7px; font-size: 15.5px; }
  .hf-hours { margin-top: 18px; }
  .hf-hours .v { font-weight: 700; color: var(--navy); font-size: 16px; }

  /* --- product detail --- */
  .hf-detail { display: grid; grid-template-columns: 1fr; gap: clamp(24px,4vw,44px); align-items: start; }
  @media (min-width: 900px) { .hf-detail { grid-template-columns: 0.92fr 1.08fr; gap: 48px; } }
  .hf-detail__media { border-radius: 18px; overflow: hidden; background: #FBFAF6; border: 1px solid var(--line); padding: 14px; display: flex; align-items: center; justify-content: center; min-height: 300px; }
  @media (min-width: 900px) { .hf-detail__media { position: sticky; top: 90px; height: clamp(360px,44vw,520px); } }
  .hf-detail__media img { width: 100%; height: 100%; object-fit: contain; object-position: center; }
  .hf-detail__body { min-width: 0; }
  .hf-detail__name { font-family: var(--display); text-transform: uppercase; font-weight: 400; font-size: clamp(26px,4.4vw,42px); line-height: 0.96; margin: 12px 0 0; color: var(--navy); }
  .hf-detail__desc { margin: 16px 0 0; color: var(--navy-soft); font-size: 16px; line-height: 1.75; max-width: 58ch; }
  .hf-block { margin-top: 26px; }
  .hf-block > .hf-lbl { margin-bottom: 10px; }
  .hf-hlgrid { display: grid; gap: 9px; }
  .hf-hl { border: 1px solid var(--line); border-radius: 12px; padding: 11px 14px; background: var(--cream); }
  .hf-hl b { display: block; font-size: 14.5px; color: var(--navy); font-weight: 700; }
  .hf-hl span { font-size: 13px; color: var(--navy-soft); }
  .hf-ol { list-style: none; counter-reset: step; margin: 0; padding: 0; display: grid; gap: 11px; }
  .hf-ol li { position: relative; padding-left: 40px; color: var(--navy-soft); font-size: 15.5px; line-height: 1.6; counter-increment: step; }
  .hf-ol li::before { content: counter(step); position: absolute; left: 0; top: 0; width: 26px; height: 26px; border-radius: 50%; background: var(--teal); color: var(--navy-ink); font-family: var(--mono); font-size: 12px; font-weight: 600; display: grid; place-items: center; }
  .hf-detail__meta { margin-top: 26px; padding-top: 18px; border-top: 1px solid var(--line); }
  .hf-detail__specs { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.03em; color: var(--navy-mute); line-height: 1.7; margin: 0 0 12px; }
  .hf-detail__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }

  /* --- legal doc --- */
  .hf-legal { max-width: 72ch; }
  .hf-legal__item { padding: 24px 0; border-top: 1px solid var(--line); }
  .hf-legal__item:first-child { border-top: none; padding-top: 0; }
  .hf-legal__item h3 { font-family: var(--body); font-weight: 800; font-size: 18px; color: var(--navy); margin: 0; display: flex; gap: 12px; align-items: baseline; line-height: 1.35; }
  .hf-legal__item h3 .n { font-family: var(--mono); font-size: 14px; color: var(--teal-deep); flex: 0 0 auto; }
  .hf-legal__item p { margin: 12px 0 0; color: var(--navy-soft); font-size: 15.5px; line-height: 1.75; }
  .hf-legal__item ul { list-style: none; margin: 12px 0 0; padding: 0; display: grid; gap: 9px; }
  .hf-legal__item ul li { position: relative; padding-left: 22px; color: var(--navy-soft); font-size: 15.5px; line-height: 1.65; }
  .hf-legal__item ul li::before { content: ""; position: absolute; left: 3px; top: 10px; width: 6px; height: 6px; border-radius: 50%; background: var(--teal); }
  .hf-legal__item a { color: var(--teal-deep); text-decoration: underline; text-underline-offset: 3px; }
  .hf-legal__item strong { color: var(--navy); font-weight: 700; }

  /* --- callout note --- */
  .hf-note { margin-top: 22px; border-left: 3px solid var(--teal); background: rgba(20,163,154,0.08); border-radius: 0 12px 12px 0; padding: 14px 18px; font-size: 14.5px; color: var(--navy-soft); line-height: 1.65; max-width: 72ch; }
  .hf-note strong { color: var(--navy); }

  /* --- FAQ accordion --- */
  .hf-faq { max-width: 76ch; display: grid; gap: 12px; }
  .hf-faq__item { background: var(--card); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
  .hf-faq__item summary { cursor: pointer; list-style: none; padding: 18px 20px; font-weight: 700; color: var(--navy); font-size: 16px; display: flex; justify-content: space-between; gap: 16px; align-items: center; }
  .hf-faq__item summary::-webkit-details-marker { display: none; }
  .hf-faq__item summary::after { content: "+"; font-family: var(--mono); font-size: 22px; line-height: 1; color: var(--teal-deep); flex: 0 0 auto; }
  .hf-faq__item[open] summary::after { content: "\2013"; }
  .hf-faq__item .a { padding: 0 20px 18px; color: var(--navy-soft); font-size: 15.5px; line-height: 1.7; }
  .hf-faq__item .a p { margin: 0 0 10px; }
  .hf-faq__item .a p:last-child { margin-bottom: 0; }

  /* --- misc: shop chip row reuse, section intro --- */
  .hf-shops--wide { margin-top: 18px; }
  .hf-lede { color: var(--navy-soft); font-size: 16px; line-height: 1.75; max-width: 62ch; margin: 0; }
  .hf-back { display: inline-flex; align-items: center; gap: 8px; margin-top: 8px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--teal-deep); }

