/*
Theme Name: Joyous Future — Hello Biz Child
Theme URI: https://joyousfuture.org/
Description: Premium multilingual publishing and provenance platform, built as a child theme of Hello Biz.
Author: Joyous Future
Template: hello-biz
Version: 2.0.3
Text Domain: joyous-future
*/

:root {
  --jf-white: #ffffff;
  --jf-off-white: #fafafa;
  --jf-surface: #f1f5f9;
  --jf-warm: #efefef;
  --jf-ink: #1e293b;
  --jf-muted: #64748b;
  --jf-slate: #475569;
  --jf-sage: #78866b;
  --jf-sage-soft: #8a9a86;
  --jf-taupe: #a39281;
  --jf-line: #dfe4e8;
  --jf-line-strong: #cbd5e1;
  --jf-container: 1360px;
  --jf-reading: 720px;
  --jf-header: 78px;
  --jf-ease: cubic-bezier(.2,.7,.2,1);
  --jf-sans: "Plus Jakarta Sans", "Noto Sans SC", "Noto Sans TC", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --jf-editorial: "Playfair Display", Georgia, serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--jf-white);
  color: var(--jf-ink);
  font-family: var(--jf-sans);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
body.jf-nav-open { overflow: hidden; }
body.lang-zh-cn { font-family: "Noto Sans SC", var(--jf-sans); }
body.lang-zh, body.lang-zh-tw { font-family: "Noto Sans TC", var(--jf-sans); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.screen-reader-text:focus {
  width: auto; height: auto; clip: auto; margin: 0; padding: 10px 14px;
  top: 12px; left: 12px; z-index: 10000; background: var(--jf-ink); color: white;
}
.jf-shell { width: min(calc(100% - 64px), var(--jf-container)); margin-inline: auto; }

/* Header */
.jf-site-header {
  position: sticky; top: 0; z-index: 999;
  min-height: var(--jf-header);
  border-bottom: 1px solid rgba(203,213,225,.7);
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(18px);
}
.admin-bar .jf-site-header { top: 32px; }
.jf-header-inner {
  min-height: var(--jf-header);
  display: grid; grid-template-columns: minmax(190px, .8fr) auto minmax(190px, .8fr);
  align-items: center; gap: 30px;
}
.jf-brand { display: inline-flex; align-items: center; width: fit-content; }
.jf-brand-logo { display: block; width: 154px; height: auto; object-fit: contain; }
.jf-footer-brand .jf-brand-logo { width: 172px; }
.jf-primary-nav { justify-self: center; }
.jf-menu, .jf-menu ul { list-style: none; margin: 0; padding: 0; }
.jf-menu { display: flex; align-items: center; gap: clamp(18px,2vw,34px); }
.jf-menu > li { position: relative; }
.jf-menu a {
  position: relative; display: flex; align-items: center; min-height: 48px;
  color: var(--jf-muted); font-size: 13px; font-weight: 600; letter-spacing: .01em;
}
.jf-menu > li > a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 5px; height: 1px;
  background: var(--jf-sage); transition: right .22s var(--jf-ease);
}
.jf-menu > li:hover > a, .jf-menu > li:focus-within > a,
.jf-menu .current-menu-item > a, .jf-menu .current-menu-ancestor > a { color: var(--jf-ink); }
.jf-menu > li:hover > a::after, .jf-menu > li:focus-within > a::after,
.jf-menu .current-menu-item > a::after, .jf-menu .current-menu-ancestor > a::after { right: 0; }
.jf-menu .menu-item-has-children > a::before {
  content: ""; width: 5px; height: 5px; margin-left: 8px; order: 2;
  border-right: 1px solid currentColor; border-bottom: 1px solid currentColor; transform: rotate(45deg) translateY(-2px);
}
.jf-menu > li > ul {
  position: absolute; top: calc(100% - 2px); left: 50%; width: min(860px, 88vw);
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; padding: 24px;
  border: 1px solid var(--jf-line); background: var(--jf-white);
  box-shadow: 0 24px 70px rgba(30,41,59,.12);
  opacity: 0; visibility: hidden; transform: translate(-50%,10px);
  transition: opacity .2s var(--jf-ease), transform .2s var(--jf-ease), visibility .2s;
}
.jf-menu > li:hover > ul, .jf-menu > li:focus-within > ul { opacity: 1; visibility: visible; transform: translate(-50%,0); }
.jf-menu > li > ul > li { padding: 10px 20px 14px; border-left: 1px solid var(--jf-line); }
.jf-menu > li > ul > li:first-child { border-left: 0; }
.jf-menu > li > ul > li > a { min-height: 34px; color: var(--jf-ink); font-size: 14px; font-weight: 700; }
.jf-menu > li > ul > li > a::before { display: none; }
.jf-menu > li > ul ul a { min-height: 32px; color: var(--jf-muted); font-size: 12px; font-weight: 500; }
.jf-menu > li > ul ul a:hover, .jf-menu > li > ul ul a:focus { color: var(--jf-sage); }
.jf-header-tools { justify-self: end; display: flex; align-items: center; gap: 10px; }
.jf-language { position: relative; }
.jf-language summary {
  list-style: none; display: flex; align-items: center; gap: 7px; min-height: 40px; padding: 0 10px;
  color: var(--jf-slate); font-size: 12px; font-weight: 650; cursor: pointer;
}
.jf-language summary::-webkit-details-marker { display: none; }
.jf-language summary::after {
  content: ""; width: 5px; height: 5px; border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor; transform: rotate(45deg) translateY(-2px);
}
.jf-language-list {
  position: absolute; top: calc(100% + 8px); right: 0; min-width: 160px; padding: 8px;
  border: 1px solid var(--jf-line); background: white; box-shadow: 0 16px 44px rgba(30,41,59,.1);
}
.jf-language-list a { display: block; padding: 9px 10px; color: var(--jf-muted); font-size: 12px; }
.jf-language-list a:hover, .jf-language-list a[aria-current="true"] { color: var(--jf-ink); background: var(--jf-off-white); }
.jf-menu-toggle {
  display: none; width: 42px; height: 42px; padding: 0; border: 1px solid var(--jf-line);
  background: white; color: var(--jf-ink);
}
.jf-menu-toggle span, .jf-menu-toggle span::before, .jf-menu-toggle span::after {
  display: block; width: 18px; height: 1px; margin: auto; background: currentColor; transition: .2s var(--jf-ease);
}
.jf-menu-toggle span { position: relative; }
.jf-menu-toggle span::before, .jf-menu-toggle span::after { content: ""; position: absolute; left: 0; }
.jf-menu-toggle span::before { top: -6px; }
.jf-menu-toggle span::after { top: 6px; }
.jf-menu-toggle[aria-expanded="true"] span { background: transparent; }
.jf-menu-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.jf-menu-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

/* Elementor and content reset */
.site-main, .jf-main { min-height: 60svh; }
.elementor-page .site-main { padding: 0; }
.elementor-widget-html .elementor-widget-container { height: 100%; }
.jf-section { padding: clamp(88px,9vw,144px) 0; }
.jf-section--soft { background: var(--jf-off-white); }
.jf-section--surface { background: var(--jf-surface); }
.jf-rule { border-top: 1px solid var(--jf-line); }
.jf-reading { width: min(100%, var(--jf-reading)); }
.jf-kicker {
  margin: 0 0 22px; color: var(--jf-sage); font-size: 12px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
}
.jf-display, .jf-h1, .jf-h2, .jf-h3 {
  margin: 0; color: var(--jf-ink); font-weight: 700; letter-spacing: -.045em; line-height: 1.08;
}
.jf-display { max-width: 1020px; font-size: clamp(48px,7.2vw,104px); }
.jf-h1 { max-width: 940px; font-size: clamp(44px,5.8vw,80px); }
.jf-h2 { font-size: clamp(34px,4.2vw,58px); }
.jf-h3 { font-size: clamp(22px,2vw,30px); letter-spacing: -.025em; }
.jf-lead { max-width: 760px; margin: 30px 0 0; color: var(--jf-muted); font-size: clamp(18px,1.7vw,22px); line-height: 1.7; }
.jf-copy { max-width: var(--jf-reading); color: var(--jf-muted); }
.jf-editorial { font-family: var(--jf-editorial); font-weight: 500; font-style: italic; }
.jf-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 38px; }
.jf-button {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px; min-height: 52px;
  padding: 0 24px; border: 1px solid var(--jf-ink); background: var(--jf-ink); color: white;
  font-size: 13px; font-weight: 700; letter-spacing: .01em;
  transition: transform .2s var(--jf-ease), box-shadow .2s var(--jf-ease), background .2s var(--jf-ease);
}
.jf-button::after { content: "→"; transition: transform .2s var(--jf-ease); }
.jf-button:hover, .jf-button:focus { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(30,41,59,.16); }
.jf-button:hover::after, .jf-button:focus::after { transform: translateX(4px); }
.jf-button--ghost { background: transparent; color: var(--jf-ink); border-color: var(--jf-line-strong); }
.jf-button--sage { background: var(--jf-sage); border-color: var(--jf-sage); }
.jf-text-link {
  display: inline-flex; align-items: center; gap: 10px; padding-bottom: 3px;
  border-bottom: 1px solid var(--jf-line-strong); color: var(--jf-slate); font-size: 13px; font-weight: 700;
}
.jf-text-link::after { content: "→"; transition: transform .2s var(--jf-ease); }
.jf-text-link:hover::after { transform: translateX(5px); }

/* Hero */
.jf-hero {
  min-height: calc(88svh - var(--jf-header)); display: flex; align-items: center;
  padding: clamp(82px,10vw,150px) 0; overflow: hidden;
  background:
    linear-gradient(110deg, rgba(241,245,249,.97) 0 65%, rgba(239,239,239,.7) 100%);
}
.jf-hero .jf-shell { position: relative; }
.jf-hero-grid { display: grid; grid-template-columns: minmax(0,1.08fr) minmax(360px,.72fr); gap: clamp(54px,7vw,108px); align-items: center; }
.jf-hero-content { position: relative; z-index: 1; max-width: 760px; }
.jf-hero .jf-display { max-width: 760px; font-size: clamp(48px,5.6vw,82px); }
.jf-hero-form-card {
  position: relative; z-index: 1; padding: clamp(28px,3.4vw,44px);
  border: 1px solid var(--jf-line-strong); border-radius: 20px;
  background: rgba(255,255,255,.9); box-shadow: 0 24px 64px rgba(30,41,59,.08);
}
.jf-hero-form-card .jf-form-field { margin-bottom: 17px; }
.jf-hero-form-card .jf-form textarea { min-height: 112px; }
.jf-hero-form-card .jf-form button { width: 100%; border-radius: 10px !important; }

/* Homepage service directory */
.jf-heading-row { display: grid; grid-template-columns: 1.1fr .7fr; gap: 72px; align-items: end; margin-bottom: 64px; }
.jf-heading-row p { margin: 0; color: var(--jf-muted); }
.jf-service-grid { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--jf-line); border-bottom: 1px solid var(--jf-line); }
.jf-service-card { position: relative; min-height: 390px; padding: 42px 38px; border-left: 1px solid var(--jf-line); transition: background .25s var(--jf-ease), transform .25s var(--jf-ease); }
.jf-service-card:first-child { border-left: 0; }
.jf-service-card:hover { background: var(--jf-off-white); transform: translateY(-4px); }
.jf-service-number { display: block; color: var(--jf-taupe); font-size: 11px; font-weight: 700; letter-spacing: .14em; }
.jf-service-card h3 { margin: 70px 0 20px; }
.jf-service-card p { margin: 0; color: var(--jf-muted); font-size: 14px; }
.jf-service-card .jf-text-link { position: absolute; left: 38px; bottom: 38px; }

/* Verification */
.jf-verify-band { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(50px,9vw,140px); align-items: center; }
.jf-search { display: flex; gap: 0; border-bottom: 1px solid var(--jf-slate); }
.jf-search input { width: 100%; min-width: 0; height: 66px; padding: 0 14px 0 0; border: 0; background: transparent; color: var(--jf-ink); outline: none; }
.jf-search input::placeholder { color: #8b98a8; }
.jf-search button { flex: 0 0 auto; padding: 0 22px; border: 0; background: transparent; color: var(--jf-slate); font-weight: 700; }
.jf-search button:hover { color: var(--jf-sage); }
.jf-verify-note, .jf-verify-result { margin-top: 20px; color: var(--jf-muted); font-size: 13px; }
.jf-verify-result { padding: 22px; border: 1px solid var(--jf-line); background: white; }
.jf-verify-result strong { display: block; color: var(--jf-ink); margin-bottom: 6px; }

/* Capability ledger */
.jf-ledger { border-top: 1px solid var(--jf-line); }
.jf-ledger-row { display: grid; grid-template-columns: 1fr 2fr; gap: 50px; padding: 28px 0; border-bottom: 1px solid var(--jf-line); }
.jf-ledger-row strong { font-size: 13px; }
.jf-ledger-row span { color: var(--jf-muted); }

/* Insights */
.jf-insights-grid { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--jf-line); }
.jf-insight { min-height: 270px; padding: 34px 30px; border-right: 1px solid var(--jf-line); border-bottom: 1px solid var(--jf-line); }
.jf-insight:last-child { border-right: 0; }
.jf-insight-meta { color: var(--jf-taupe); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.jf-insight h3 { margin: 54px 0 18px; font-size: 21px; line-height: 1.35; }
.jf-insight p { color: var(--jf-muted); font-size: 13px; }
.jf-empty-state { padding: 54px 0; border-top: 1px solid var(--jf-line); border-bottom: 1px solid var(--jf-line); color: var(--jf-muted); }

/* Interior pages */
.jf-page-hero { padding: clamp(96px,12vw,180px) 0 clamp(70px,9vw,130px); background: var(--jf-off-white); border-bottom: 1px solid var(--jf-line); }
.jf-directory { border-top: 1px solid var(--jf-line); }
.jf-directory-section { display: grid; grid-template-columns: .55fr 1.45fr; gap: clamp(50px,10vw,150px); padding: 76px 0; border-bottom: 1px solid var(--jf-line); }
.jf-directory-index { color: var(--jf-taupe); font-size: 12px; font-weight: 700; letter-spacing: .13em; }
.jf-directory-content > p { max-width: var(--jf-reading); color: var(--jf-muted); }
.jf-offer-list { display: grid; grid-template-columns: repeat(2,1fr); gap: 0 28px; margin: 34px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--jf-line); }
.jf-offer-list li { padding: 15px 0; border-bottom: 1px solid var(--jf-line); color: var(--jf-slate); font-size: 13px; }
.jf-partner-note { margin-top: 34px; padding: 22px 24px; border-left: 2px solid var(--jf-taupe); background: var(--jf-off-white); color: var(--jf-muted); font-size: 14px; }
.jf-about-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(60px,11vw,170px); }
.jf-about-grid + .jf-about-grid { margin-top: 100px; padding-top: 100px; border-top: 1px solid var(--jf-line); }
.jf-about-grid p { color: var(--jf-muted); }
.jf-about-grid blockquote { margin: 34px 0 0; font-family: var(--jf-editorial); font-size: clamp(24px,3vw,38px); line-height: 1.45; color: var(--jf-slate); }
.jf-category-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.jf-category-list span { padding: 10px 14px; border: 1px solid var(--jf-line); color: var(--jf-muted); font-size: 12px; }

/* Contact and forms */
.jf-contact-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(60px,11vw,170px); align-items: start; }
.jf-contact-copy { position: sticky; top: calc(var(--jf-header) + 40px); }
.jf-contact-copy p { color: var(--jf-muted); }
.jf-contact-email { display: inline-block; margin-top: 24px; padding-bottom: 3px; border-bottom: 1px solid var(--jf-taupe); font-weight: 700; }
.wpforms-container { margin: 0 !important; }
.wpforms-container .wpforms-field { padding: 0 0 22px !important; }
.wpforms-container .wpforms-field-label { margin-bottom: 8px !important; color: var(--jf-slate) !important; font-size: 12px !important; font-weight: 700 !important; }
.wpforms-container input, .wpforms-container select, .wpforms-container textarea,
.jf-form input, .jf-form select, .jf-form textarea {
  width: 100% !important; max-width: none !important; border: 0 !important; border-bottom: 1px solid var(--jf-line-strong) !important;
  border-radius: 0 !important; background: transparent !important; color: var(--jf-ink) !important; box-shadow: none !important;
}
.wpforms-container input, .wpforms-container select, .jf-form input, .jf-form select { height: 52px !important; padding: 0 !important; }
.wpforms-container textarea, .jf-form textarea { min-height: 150px; padding: 12px 0 !important; }
.wpforms-container input:focus, .wpforms-container select:focus, .wpforms-container textarea:focus,
.jf-form input:focus, .jf-form select:focus, .jf-form textarea:focus { border-color: var(--jf-sage) !important; outline: none !important; }
.wpforms-container .wpforms-submit, .jf-form button {
  min-height: 52px !important; padding: 0 24px !important; border: 1px solid var(--jf-ink) !important;
  border-radius: 0 !important; background: var(--jf-ink) !important; color: white !important; font-weight: 700 !important;
}
.jf-form-field { margin-bottom: 22px; }
.jf-form-field label { display: block; margin-bottom: 7px; color: var(--jf-slate); font-size: 12px; font-weight: 700; }
.jf-honeypot { position: absolute; left: -9999px; }
.jf-form-status { margin-bottom: 20px; padding: 14px 16px; background: var(--jf-surface); color: var(--jf-slate); font-size: 13px; }

/* Closing CTA */
.jf-cta { padding: clamp(78px,10vw,140px) 0; background: var(--jf-ink); color: white; }
.jf-cta .jf-h2 { max-width: 850px; color: white; }
.jf-cta .jf-button { border-color: white; background: white; color: var(--jf-ink); }

/* Footer */
.jf-site-footer { padding: 78px 0 28px; background: var(--jf-off-white); border-top: 1px solid var(--jf-line); }
.jf-footer-grid { display: grid; grid-template-columns: 1.4fr repeat(4,.7fr); gap: 48px; padding-bottom: 64px; }
.jf-footer-brand p { max-width: 360px; margin: 22px 0 0; color: var(--jf-muted); font-size: 13px; }
.jf-footer-column h2 { margin: 4px 0 18px; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.jf-footer-column ul { list-style: none; margin: 0; padding: 0; }
.jf-footer-column li + li { margin-top: 10px; }
.jf-footer-column a { color: var(--jf-muted); font-size: 12px; }
.jf-footer-column a:hover { color: var(--jf-ink); }
.jf-footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 24px; border-top: 1px solid var(--jf-line); color: var(--jf-muted); font-size: 11px; }
.jf-footer-bottom p { margin: 0; }

/* Motion */
.jf-reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--jf-ease), transform .7s var(--jf-ease); }
.jf-reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1120px) {
  .jf-header-inner { grid-template-columns: 1fr auto; }
  .jf-menu-toggle { display: block; }
  .jf-primary-nav {
    position: fixed; top: var(--jf-header); right: 0; bottom: 0; width: min(440px,90vw); padding: 28px;
    background: white; border-left: 1px solid var(--jf-line); box-shadow: -24px 28px 60px rgba(30,41,59,.1);
    overflow-y: auto; transform: translateX(105%); visibility: hidden; transition: .24s var(--jf-ease);
  }
  .admin-bar .jf-primary-nav { top: calc(var(--jf-header) + 32px); }
  .jf-primary-nav.is-open { transform: none; visibility: visible; }
  .jf-menu { display: block; }
  .jf-menu > li { border-bottom: 1px solid var(--jf-line); }
  .jf-menu a { min-height: 54px; font-size: 14px; }
  .jf-menu > li > ul { position: static; width: auto; display: block; padding: 0 0 20px 16px; border: 0; box-shadow: none; opacity: 1; visibility: visible; transform: none; }
  .jf-menu > li > ul > li { padding: 10px 0; border: 0; }
  .jf-menu > li > ul ul { padding-left: 14px; }
  .jf-menu > li > ul ul a { min-height: 34px; }
  .jf-header-tools { grid-column: 2; grid-row: 1; }
  .jf-service-grid { grid-template-columns: 1fr; }
  .jf-hero-grid { grid-template-columns: minmax(0,1fr) minmax(330px,.8fr); gap: 42px; }
  .jf-service-card { min-height: 280px; border-left: 0; border-top: 1px solid var(--jf-line); }
  .jf-service-card:first-child { border-top: 0; }
  .jf-footer-grid { grid-template-columns: 1.3fr repeat(2,1fr); }
}

@media (max-width: 782px) {
  .admin-bar .jf-site-header { top: 46px; }
  .admin-bar .jf-primary-nav { top: calc(var(--jf-header) + 46px); }
  .jf-shell { width: min(calc(100% - 36px), var(--jf-container)); }
  .jf-hero { min-height: calc(82svh - var(--jf-header)); }
  .jf-heading-row, .jf-verify-band, .jf-directory-section, .jf-about-grid, .jf-contact-grid, .jf-hero-grid { grid-template-columns: 1fr; }
  .jf-heading-row { gap: 24px; }
  .jf-directory-section, .jf-about-grid, .jf-contact-grid { gap: 34px; }
  .jf-contact-copy { position: static; }
  .jf-hero-form-card { max-width: 620px; }
  .jf-insights-grid { grid-template-columns: 1fr; }
  .jf-insight { border-right: 0; }
  .jf-footer-grid { grid-template-columns: 1fr 1fr; }
  .jf-footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  :root { --jf-header: 70px; }
  .jf-shell { width: min(calc(100% - 28px), var(--jf-container)); }
  .jf-brand-logo { width: 132px; }
  .jf-footer-brand .jf-brand-logo { width: 160px; }
  .jf-language summary { padding-inline: 6px; }
  .jf-language summary span { display: none; }
  .jf-display {
    max-width: 100%;
    font-size: clamp(38px,11vw,50px);
    letter-spacing: -.055em;
  }
  .jf-actions, .jf-search { align-items: stretch; flex-direction: column; }
  .jf-button { width: 100%; }
  .jf-search { border: 0; }
  .jf-search input { border-bottom: 1px solid var(--jf-slate); }
  .jf-search button { min-height: 50px; background: var(--jf-ink); color: white; }
  .jf-offer-list, .jf-ledger-row { grid-template-columns: 1fr; }
  .jf-ledger-row { gap: 8px; }
  .jf-footer-grid { grid-template-columns: 1fr; }
  .jf-footer-brand { grid-column: auto; }
  .jf-footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .jf-reveal { opacity: 1; transform: none; }
}
