@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
  --hf-ink: #0b0e10;
  --hf-ink-soft: #14191c;
  --hf-paper: #f2f4f2;
  --hf-white: #ffffff;
  --hf-muted: #6e7777;
  --hf-line: #dce1de;
  --hf-green: #25d366;
  --hf-lime: #c8f135;
  --hf-orange: #ff6a2a;
  --hf-shell: 1240px;
  --hf-radius: 14px;
  --hf-shadow: 0 18px 50px rgba(11, 14, 16, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--hf-ink);
  background: var(--hf-white);
  font-family: 'DM Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.is-menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
a:hover { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { cursor: pointer; }

.hf-shell { width: min(var(--hf-shell), calc(100% - 64px)); margin: 0 auto; }
.hf-display { font-family: 'Space Grotesk', 'Arial Narrow', Arial, sans-serif; }
.hf-eyebrow {
  margin: 0 0 18px;
  color: var(--hf-muted);
  font: 700 11px/1.2 'DM Sans', Arial, sans-serif;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.hf-eyebrow--light { color: rgba(255,255,255,.62); }
.hf-section { padding: 104px 0; }
.hf-section--paper { background: var(--hf-paper); }
.hf-section-head { display: flex; align-items: end; justify-content: space-between; gap: 32px; margin-bottom: 42px; }
.hf-section-head h2 { margin: 0; max-width: 610px; font: 600 clamp(34px, 4vw, 58px)/1.04 'Space Grotesk', Arial, sans-serif; letter-spacing: -.045em; }
.hf-section-head p { max-width: 420px; margin: 0; color: var(--hf-muted); }
.hf-section-head--light h2, .hf-section-head--light p { color: var(--hf-white); }
.hf-section-head--light p { color: rgba(255,255,255,.65); }
.hf-link-arrow { display: inline-flex; align-items: center; gap: 11px; font-size: 14px; font-weight: 700; white-space: nowrap; }
.hf-link-arrow::after { content: '↗'; font-size: 19px; line-height: 1; transition: transform .2s ease; }
.hf-link-arrow:hover::after { transform: translate(3px, -3px); }

/* Header */
.hf-header {
  position: fixed;
  z-index: 50;
  top: 0;
  width: 100%;
  color: var(--hf-white);
  background: rgba(11, 14, 16, .96);
  border-bottom: 1px solid rgba(255,255,255,.09);
  transition: background .25s ease, box-shadow .25s ease;
}
.hf-header.is-scrolled { background: rgba(11,14,16,.99); box-shadow: 0 8px 28px rgba(0,0,0,.16); }
.hf-header-inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.hf-brand { display: inline-flex; align-items: center; gap: 11px; min-width: 185px; }
.hf-brand-mark {
  display: grid; place-items: center; width: 34px; height: 34px;
  color: var(--hf-ink); background: var(--hf-lime); border-radius: 50%;
  font: 700 18px/1 'Space Grotesk', Arial, sans-serif;
}
.hf-brand-mark img { width: 100%; height: 100%; object-fit: contain; border-radius: inherit; }
.hf-brand-copy { display: flex; flex-direction: column; gap: 1px; }
.hf-brand-copy strong { font: 700 17px/1.05 'Space Grotesk', Arial, sans-serif; letter-spacing: -.02em; }
.hf-brand-copy small { color: rgba(255,255,255,.5); font-size: 8px; font-weight: 700; letter-spacing: .18em; }
.hf-nav { display: flex; align-items: center; justify-content: flex-end; gap: 27px; }
.hf-nav > a:not(.hf-btn) { position: relative; color: rgba(255,255,255,.72); font-size: 13px; font-weight: 600; transition: color .2s ease; }
.hf-nav > a:not(.hf-btn)::after { content: ''; position: absolute; right: 0; bottom: -8px; left: 0; height: 1px; background: var(--hf-lime); transform: scaleX(0); transform-origin: right; transition: transform .2s ease; }
.hf-nav > a:not(.hf-btn):hover, .hf-nav > a.active { color: var(--hf-white); }
.hf-nav > a:not(.hf-btn):hover::after, .hf-nav > a.active::after { transform: scaleX(1); transform-origin: left; }
.hf-menu-toggle { display: none; width: 42px; height: 42px; padding: 0; color: var(--hf-white); background: transparent; border: 1px solid rgba(255,255,255,.22); border-radius: 8px; }
.hf-menu-toggle svg { width: 20px; height: 20px; }

/* Buttons */
.hf-btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 48px; padding: 0 20px; border: 1px solid transparent; border-radius: 8px; font-size: 13px; font-weight: 700; letter-spacing: .01em; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.hf-btn:hover { transform: translateY(-2px); }
.hf-btn--lime { color: var(--hf-ink); background: var(--hf-lime); }
.hf-btn--lime:hover { background: #d6fb55; }
.hf-btn--green { color: var(--hf-white); background: var(--hf-green); }
.hf-btn--green:hover { background: #1db954; }
.hf-btn--outline { color: var(--hf-white); border-color: rgba(255,255,255,.33); }
.hf-btn--outline:hover { border-color: var(--hf-white); background: rgba(255,255,255,.08); }
.hf-btn--dark { color: var(--hf-white); background: var(--hf-ink); }
.hf-btn--dark:hover { background: #20282c; }
.hf-btn--small { min-height: 39px; padding: 0 14px; font-size: 12px; }
.hf-btn svg { width: 17px; height: 17px; }

/* Hero */
.hf-hero { position: relative; min-height: min(850px, 100vh); color: var(--hf-white); background-color: var(--hf-ink); background-image: var(--hf-hero-image); background-position: center 40%; background-size: cover; background-repeat: no-repeat; isolation: isolate; }
.hf-hero::before { content: ''; position: absolute; z-index: -1; inset: 0; background: linear-gradient(90deg, rgba(11,14,16,.94) 0%, rgba(11,14,16,.72) 34%, rgba(11,14,16,.1) 73%, rgba(11,14,16,.16) 100%); }
.hf-hero::after { content: ''; position: absolute; z-index: -1; right: 0; bottom: 0; left: 0; height: 28%; background: linear-gradient(0deg, rgba(11,14,16,.64), transparent); }
.hf-hero-inner { min-height: min(850px, 100vh); display: flex; align-items: center; padding-top: 80px; }
.hf-hero-copy { width: min(620px, 100%); padding: 90px 0 80px; }
.hf-hero h1 { max-width: 680px; margin: 0 0 25px; font: 600 clamp(48px, 7vw, 94px)/.96 'Space Grotesk', Arial, sans-serif; letter-spacing: -.065em; }
.hf-hero h1 em { color: var(--hf-lime); font-style: normal; }
.hf-hero-copy > p { max-width: 500px; margin: 0 0 36px; color: rgba(255,255,255,.72); font-size: 18px; line-height: 1.55; }
.hf-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hf-hero-rail { position: absolute; right: 0; bottom: 35px; left: 0; }
.hf-hero-rail-inner { display: flex; gap: 44px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.22); }
.hf-hero-rail-item { display: flex; flex-direction: column; gap: 3px; }
.hf-hero-rail-item strong { font: 600 16px/1.2 'Space Grotesk', Arial, sans-serif; letter-spacing: .01em; }
.hf-hero-rail-item span { color: rgba(255,255,255,.52); font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }

/* Inventory cards */
.hf-inventory-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 24px; }
.hf-vehicle-card { position: relative; min-width: 0; padding-bottom: 20px; border-bottom: 1px solid var(--hf-line); transition: transform .25s ease; }
.hf-vehicle-card:hover { transform: translateY(-5px); }
.hf-vehicle-media { position: relative; overflow: hidden; aspect-ratio: 4/3; margin-bottom: 17px; background: #e8ecea; border-radius: var(--hf-radius); }
.hf-vehicle-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s cubic-bezier(.2,.6,.2,1); }
.hf-vehicle-card:hover .hf-vehicle-media img { transform: scale(1.045); }
.hf-vehicle-number { position: absolute; top: 13px; left: 14px; display: grid; place-items: center; width: 33px; height: 33px; color: var(--hf-white); background: rgba(11,14,16,.72); border: 1px solid rgba(255,255,255,.24); border-radius: 50%; font: 600 11px/1 'Space Grotesk', Arial, sans-serif; }
.hf-vehicle-topline { display: flex; justify-content: space-between; gap: 14px; margin-bottom: 8px; color: var(--hf-muted); font-size: 10px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.hf-vehicle-card h3 { margin: 0 0 8px; font: 600 25px/1.1 'Space Grotesk', Arial, sans-serif; letter-spacing: -.04em; }
.hf-vehicle-price { display: flex; align-items: baseline; gap: 8px; margin: 0 0 13px; color: var(--hf-muted); font-size: 12px; }
.hf-vehicle-price strong { color: var(--hf-ink); font: 600 19px/1.1 'Space Grotesk', Arial, sans-serif; }
.hf-card-actions { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.hf-card-actions .hf-link-arrow { color: var(--hf-ink); font-size: 12px; }

/* Export feature band */
.hf-export-band { color: var(--hf-white); background: var(--hf-ink); }
.hf-export-grid { display: grid; grid-template-columns: minmax(0,1.1fr) minmax(0,.9fr); min-height: 550px; }
.hf-export-image { min-height: 440px; background-image: var(--hf-export-image); background-position: center; background-size: cover; background-repeat: no-repeat; }
.hf-export-copy { display: flex; flex-direction: column; justify-content: center; padding: 72px clamp(30px, 6vw, 100px); }
.hf-export-copy h2 { margin: 0 0 24px; font: 600 clamp(35px, 4vw, 58px)/1.02 'Space Grotesk', Arial, sans-serif; letter-spacing: -.055em; }
.hf-export-copy > p { max-width: 440px; margin: 0 0 35px; color: rgba(255,255,255,.65); }
.hf-process-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.2); }
.hf-process-list li { display: grid; grid-template-columns: 42px 1fr; gap: 14px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.2); }
.hf-process-list b { color: var(--hf-lime); font: 600 12px/1.2 'Space Grotesk', Arial, sans-serif; }
.hf-process-list span { font-size: 14px; font-weight: 600; }

/* Intro / proof */
.hf-proof-grid { display: grid; grid-template-columns: minmax(0,.75fr) minmax(0,1.25fr); gap: clamp(48px, 8vw, 140px); align-items: start; }
.hf-proof-grid h2 { margin: 0; font: 600 clamp(34px, 4vw, 56px)/1.04 'Space Grotesk', Arial, sans-serif; letter-spacing: -.055em; }
.hf-proof-copy { color: var(--hf-muted); font-size: 17px; }
.hf-proof-copy p { margin: 0 0 18px; }
.hf-proof-note { display: inline-flex; align-items: center; gap: 10px; margin-top: 18px; color: var(--hf-ink); font-size: 12px; font-weight: 700; }
.hf-proof-note::before { content: ''; display: inline-block; width: 8px; height: 8px; background: var(--hf-lime); border-radius: 50%; }

/* CTA and footer */
.hf-cta { color: var(--hf-ink); background: var(--hf-lime); }
.hf-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding-top: 58px; padding-bottom: 58px; }
.hf-cta h2 { max-width: 720px; margin: 0; font: 600 clamp(31px, 4vw, 56px)/1.04 'Space Grotesk', Arial, sans-serif; letter-spacing: -.055em; }
.hf-footer { color: rgba(255,255,255,.68); background: var(--hf-ink); }
.hf-footer-main { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 50px; padding: 74px 0 64px; }
.hf-footer .hf-brand { color: var(--hf-white); }
.hf-footer-intro { max-width: 290px; margin: 22px 0 0; font-size: 13px; line-height: 1.7; }
.hf-footer h3 { margin: 0 0 19px; color: var(--hf-white); font: 600 14px/1.2 'Space Grotesk', Arial, sans-serif; letter-spacing: .04em; text-transform: uppercase; }
.hf-footer ul { margin: 0; padding: 0; list-style: none; font-size: 13px; line-height: 2.2; }
.hf-footer li + li { margin-top: 2px; }
.hf-footer a:hover { color: var(--hf-lime); }
.hf-footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding: 17px 0 22px; border-top: 1px solid rgba(255,255,255,.13); font-size: 11px; }
.hf-footer-bottom p { margin: 0; }
.hf-footer-bottom > div p + p { margin-top: 6px; }
.hf-icp a { color: inherit; }
.hf-mobile-bar { display: none; }
.hf-floating-wa { position: fixed; z-index: 45; right: 22px; bottom: 22px; display: grid; place-items: center; width: 58px; height: 58px; color: var(--hf-white); background: var(--hf-green); border-radius: 50%; box-shadow: 0 12px 30px rgba(37,211,102,.3); transition: transform .2s ease; }
.hf-floating-wa:hover { color: var(--hf-white); transform: translateY(-3px); }
.hf-floating-wa svg { width: 28px; height: 28px; }

/* Inner pages */
.hf-page-hero { padding: 168px 0 82px; color: var(--hf-white); background: var(--hf-ink); }
.hf-page-hero h1 { max-width: 730px; margin: 0 0 18px; font: 600 clamp(44px, 6vw, 82px)/.98 'Space Grotesk', Arial, sans-serif; letter-spacing: -.065em; }
.hf-page-hero p { max-width: 580px; margin: 0; color: rgba(255,255,255,.65); font-size: 17px; }
.hf-inventory-page { padding-top: 72px; padding-bottom: 110px; }
.hf-inventory-toolbar { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 38px; padding-bottom: 20px; border-bottom: 1px solid var(--hf-line); }
.hf-filter-group { display: flex; flex-wrap: wrap; gap: 9px; }
.hf-filter, .hf-search { min-height: 42px; color: var(--hf-ink); background: var(--hf-white); border: 1px solid var(--hf-line); border-radius: 7px; }
.hf-filter { padding: 0 34px 0 12px; }
.hf-search { width: 235px; padding: 0 13px; }
.hf-search:focus, .hf-filter:focus { outline: 2px solid rgba(200,241,53,.8); outline-offset: 2px; }
.hf-inventory-note { margin: -19px 0 30px; color: var(--hf-muted); font-size: 12px; }
.hf-no-results { display: none; padding: 60px 0; color: var(--hf-muted); text-align: center; }
.hf-detail-wrap { padding: 74px 0 110px; }
.hf-detail-grid { display: grid; grid-template-columns: minmax(0,1.08fr) minmax(340px,.92fr); gap: clamp(42px, 7vw, 104px); align-items: start; }
.hf-detail-media { position: sticky; top: 105px; }
.hf-detail-image { overflow: hidden; aspect-ratio: 4/3; background: #e8ecea; border-radius: var(--hf-radius); }
.hf-detail-image img { width: 100%; height: 100%; object-fit: cover; }
.hf-detail-thumbs { display: flex; gap: 10px; margin-top: 10px; overflow-x: auto; }
.hf-detail-thumbs img { width: 80px; height: 62px; object-fit: cover; border: 2px solid transparent; border-radius: 7px; cursor: pointer; opacity: .6; }
.hf-detail-thumbs img.is-active, .hf-detail-thumbs img:hover { border-color: var(--hf-lime); opacity: 1; }
.hf-detail-kicker { margin: 4px 0 13px; color: var(--hf-muted); font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.hf-detail-content h1 { margin: 0 0 18px; font: 600 clamp(39px, 5vw, 70px)/.98 'Space Grotesk', Arial, sans-serif; letter-spacing: -.065em; }
.hf-detail-summary { margin: 0 0 28px; color: var(--hf-muted); font-size: 16px; }
.hf-detail-price { margin: 0 0 25px; padding: 20px 0; border-top: 1px solid var(--hf-line); border-bottom: 1px solid var(--hf-line); }
.hf-detail-price span { display: block; margin-bottom: 4px; color: var(--hf-muted); font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.hf-detail-price strong { font: 600 32px/1.1 'Space Grotesk', Arial, sans-serif; }
.hf-spec-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin: 0 0 29px; border-top: 1px solid var(--hf-line); }
.hf-spec-list div { padding: 14px 0; border-bottom: 1px solid var(--hf-line); }
.hf-spec-list dt { margin-bottom: 4px; color: var(--hf-muted); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.hf-spec-list dd { margin: 0; font-size: 14px; font-weight: 600; }
.hf-detail-buttons { display: flex; flex-wrap: wrap; gap: 10px; }
.hf-rich-content { max-width: 900px; margin-top: 88px; padding-top: 28px; border-top: 1px solid var(--hf-line); }
.hf-rich-content h2 { margin: 0 0 22px; font: 600 33px/1.1 'Space Grotesk', Arial, sans-serif; letter-spacing: -.04em; }
.hf-rich-content p { color: var(--hf-muted); }
.hf-rich-content table { width: 100%; margin: 25px 0; border-collapse: collapse; font-size: 14px; }
.hf-rich-content th, .hf-rich-content td { padding: 12px 13px; text-align: left; border-bottom: 1px solid var(--hf-line); }
.hf-rich-content th { color: var(--hf-muted); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.hf-rich-content .hf-source-note { color: var(--hf-muted); font-size: 12px; }
.hf-rich-content .hf-source-note:empty { display: none; }

.hf-about-wrap { padding: 76px 0 110px; }
.hf-about-grid { display: grid; grid-template-columns: minmax(0,.8fr) minmax(0,1.2fr); gap: clamp(40px,8vw,130px); align-items: start; }
.hf-about-grid h2 { margin: 0; font: 600 clamp(36px,5vw,68px)/1 'Space Grotesk', Arial, sans-serif; letter-spacing: -.065em; }
.hf-about-content { color: var(--hf-muted); font-size: 17px; }
.hf-about-content h2, .hf-about-content h3 { color: var(--hf-ink); }
.hf-about-content h2 { margin-top: 0; font-size: 30px; }
.hf-about-content h3 { margin: 34px 0 10px; font: 600 21px/1.2 'Space Grotesk', Arial, sans-serif; }
.hf-about-content p { margin: 0 0 17px; }
.hf-contact-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 42px; padding-top: 22px; border-top: 1px solid var(--hf-line); }
.hf-contact-panel strong { display: block; margin-bottom: 4px; color: var(--hf-ink); font: 600 13px/1.2 'Space Grotesk', Arial, sans-serif; text-transform: uppercase; }
.hf-contact-panel span, .hf-contact-panel a { color: var(--hf-muted); font-size: 14px; }

/* Utility / motion */
.hf-reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.hf-reveal.is-visible { opacity: 1; transform: none; }
.hf-hidden { display: none !important; }
a[data-number-pending="true"] { cursor: not-allowed; opacity: .68; }

@media (max-width: 980px) {
  .hf-shell { width: min(var(--hf-shell), calc(100% - 40px)); }
  .hf-nav { gap: 17px; }
  .hf-nav > a:not(.hf-btn) { font-size: 12px; }
  .hf-inventory-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .hf-export-grid { grid-template-columns: 1fr; }
  .hf-export-image { min-height: 380px; }
  .hf-proof-grid, .hf-about-grid { grid-template-columns: 1fr; gap: 32px; }
  .hf-detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .hf-detail-media { position: static; }
}

@media (max-width: 860px) {
  .hf-shell { width: calc(100% - 32px); }
  .hf-header-inner { min-height: 68px; }
  .hf-brand { min-width: 0; }
  .hf-menu-toggle { display: grid; place-items: center; }
  .hf-nav { position: fixed; top: 68px; right: 0; bottom: 0; left: 0; display: flex; flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 0; padding: 25px 16px 100px; background: var(--hf-ink); transform: translateX(100%); transition: transform .28s ease; }
  .hf-nav.is-open { transform: translateX(0); }
  .hf-nav > a:not(.hf-btn) { padding: 17px 10px; border-bottom: 1px solid rgba(255,255,255,.12); font-size: 17px; }
  .hf-nav > a:not(.hf-btn)::after { display: none; }
  .hf-nav .hf-btn { margin-top: 22px; }
  .hf-hero, .hf-hero-inner { min-height: 720px; }
  .hf-hero { background-position: 60% 42%; }
  .hf-hero::before { background: linear-gradient(90deg, rgba(11,14,16,.95) 0%, rgba(11,14,16,.73) 58%, rgba(11,14,16,.18) 100%); }
  .hf-hero-copy { padding: 90px 0 150px; }
  .hf-hero h1 { font-size: clamp(45px, 14vw, 67px); }
  .hf-hero-copy > p { font-size: 16px; }
  .hf-hero-rail { bottom: 22px; }
  .hf-hero-rail-inner { flex-wrap: wrap; gap: 15px 28px; }
  .hf-hero-rail-item strong { font-size: 14px; }
  .hf-section { padding: 70px 0; }
  .hf-section-head { display: block; margin-bottom: 30px; }
  .hf-section-head h2 { margin-bottom: 16px; }
  .hf-section-head .hf-link-arrow { margin-top: 18px; }
  .hf-inventory-grid { grid-template-columns: 1fr; gap: 30px; }
  .hf-export-copy { padding: 60px 22px; }
  .hf-export-image { min-height: 270px; }
  .hf-cta-inner { display: block; padding: 45px 0; }
  .hf-cta h2 { margin-bottom: 25px; }
  .hf-footer-main { grid-template-columns: 1fr 1fr; gap: 34px 25px; padding: 55px 0 45px; }
  .hf-footer-main > :first-child { grid-column: 1 / -1; }
  .hf-footer-bottom { display: block; padding-bottom: 80px; }
  .hf-footer-bottom p + p { margin-top: 7px; }
  .hf-floating-wa { right: 16px; bottom: 73px; width: 51px; height: 51px; }
  .hf-floating-wa svg { width: 24px; height: 24px; }
  .hf-mobile-bar { position: fixed; z-index: 44; right: 0; bottom: 0; left: 0; display: flex; min-height: 54px; color: var(--hf-white); background: var(--hf-ink); box-shadow: 0 -8px 25px rgba(0,0,0,.12); }
  .hf-mobile-bar a { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; border-right: 1px solid rgba(255,255,255,.12); font-size: 12px; font-weight: 700; }
  .hf-mobile-bar a:last-child { color: var(--hf-ink); background: var(--hf-green); border-right: 0; }
  .hf-mobile-bar svg { width: 17px; height: 17px; }
  .hf-page-hero { padding: 132px 0 60px; }
  .hf-page-hero h1 { font-size: clamp(43px, 14vw, 65px); }
  .hf-inventory-page { padding-top: 50px; padding-bottom: 80px; }
  .hf-inventory-toolbar { align-items: stretch; }
  .hf-filter-group { width: 100%; }
  .hf-filter, .hf-search { width: 100%; }
  .hf-search { order: -1; }
  .hf-detail-wrap, .hf-about-wrap { padding: 50px 0 80px; }
  .hf-detail-content h1 { font-size: clamp(43px, 13vw, 64px); }
  .hf-spec-list { grid-template-columns: 1fr; }
  .hf-rich-content { margin-top: 62px; }
  .hf-rich-content table { display: block; overflow-x: auto; white-space: nowrap; }
  .hf-contact-panel { grid-template-columns: 1fr; }
}

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