/* ============================================================================
   FITCO Brand Pages (Wabash, Carver, Willi Kopp): shared family stylesheet.

   Design language = HOME v2 ("Confirmed Before You Buy"): monochrome instrument
   paper, Manrope speaks / Inter explains, ink #10263A on white, one navy #0B2239
   for dark sections, near-black as the only emphasis. No gold, no blue, no mono,
   no thin type, no dashes (owner law).

   This file is SELF-CONTAINED so a brand page never depends on homepage.css:
   it re-declares the .fh-* tokens + the components the brand pages reuse (kept
   in visual lockstep with css/homepage.css), then adds .fb-* components the
   brand pages need that the homepage does not (decision cards, product grid,
   comparison, FAQ accordion, spec panel, worldwide strip).

   SCOPING: every rule is under .fitco-custom-page.fh-root (same root as HOME v2)
   and, for brand-only pieces, .fb-root. Enqueued only on the three brand routes.
   ============================================================================ */

.fitco-custom-page.fh-root {
    --fh-navy:        #0B2239;
    --fh-navy-2:      #10263A;
    --fh-ink:         #10263A;
    --fh-muted:       #46586A;
    --fh-gold:        #111214;   /* "emphasis" slot = near-black, not a colour */
    --fh-gold-bright: #F2F1EC;
    --fh-paper:       #FFFFFF;
    --fh-line:        rgba(11, 34, 57, 0.13);
    --fh-line-2:      rgba(11, 34, 57, 0.2);
    --fh-line-3:      rgba(11, 34, 57, 0.28);
    --fh-cloud:       #C7D1D9;
    --fh-display: 'Manrope', sans-serif;
    --fh-text: 'Inter', system-ui, sans-serif;

    font-family: var(--fh-text);
    color: var(--fh-ink);
    background: var(--fh-paper);
}

.fh-root *,
.fh-root *::before,
.fh-root *::after { box-sizing: border-box; }

.fh-root img { display: block; max-width: 100%; }
.fh-root a { color: var(--fh-ink); text-decoration: none; }
.fh-root a:hover { color: var(--fh-gold); }

@keyframes fitcoFade {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: none; }
}

/* Reveal-on-scroll: content is visible by default; the hidden pre-animation
   state applies only once JS marks the root .fb-anim, so no-JS/crawlers see all. */
.fh-root .fb-reveal { opacity: 1; transform: none; }
.fb-root.fb-anim .fb-reveal {
    opacity: 0;
    transform: translate3d(0, 16px, 0);
    transition: opacity 0.6s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: opacity, transform;
}
.fb-root.fb-anim .fb-reveal.is-visible { opacity: 1; transform: none; }

/* ════════════════ LAYOUT PRIMITIVES (shared with HOME v2) ════════════════ */

.fh-container { max-width: 1280px; margin: 0 auto; padding-inline: 24px; }

.fh-section          { background: #fff; }
.fh-section--tint    { background: #F4F6F7; }
.fh-section--navy    { background: var(--fh-navy); color: #fff; }
.fh-root > .fh-section + .fh-section { border-top: 1px solid var(--fh-line); }
.fh-section .fh-container { padding-block: clamp(56px, 7vw, 96px); }
.fh-section--tint .fh-container { padding-block: clamp(48px, 6vw, 80px); }
.fh-section--navy .fh-container { padding-block: clamp(64px, 8vw, 112px); }
.fh-anchor { scroll-margin-top: 96px; }

.fh-split {
    display: grid;
    grid-template-columns: minmax(180px, 0.4fr) 1fr;
    gap: clamp(24px, 4vw, 64px);
    align-items: start;
}
.fh-split--header { grid-template-columns: minmax(0, 1fr); gap: 14px; margin-bottom: clamp(32px, 4vw, 48px); }
.fh-split--header .fh-eyebrow { padding-top: 0; }

/* ════════════════ TYPE (shared) ════════════════ */

.fh-eyebrow {
    margin: 0 0 16px;
    font: 800 12px/1 var(--fh-display);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--fh-gold);
}
.fh-split .fh-eyebrow { margin: 0; padding-top: 10px; }
.fh-section--navy .fh-eyebrow { color: var(--fh-gold-bright); margin: 0 0 14px; }

.fh-h1 {
    margin: 0;
    font: 800 clamp(38px, 4.6vw, 62px)/1.02 var(--fh-display);
    letter-spacing: -0.03em;
    text-wrap: balance;
    color: var(--fh-ink);
}
.fh-h2 {
    margin: 0;
    font: 800 clamp(28px, 3.2vw, 44px)/1.05 var(--fh-display);
    letter-spacing: -0.03em;
    color: var(--fh-ink);
    max-width: 24ch;
}
.fh-h2--compact { font-size: clamp(24px, 2.6vw, 34px); line-height: 1.08; }
.fh-h2--measure { max-width: 22ch; }
.fh-section--navy .fh-h2 { color: #fff; font-size: clamp(30px, 3.6vw, 48px); text-wrap: balance; max-width: none; }

.fh-lead { margin: 20px 0 0; font: 500 17px/1.6 var(--fh-text); color: var(--fh-muted); max-width: 52ch; text-wrap: pretty; }
.fh-sub { margin: 14px 0 0; font: 500 15px/1.65 var(--fh-text); color: var(--fh-muted); max-width: 62ch; }
.fh-sub--sm { font-size: 14px; line-height: 1.6; }
.fh-section--navy .fh-sub { color: var(--fh-cloud); font-size: 15.5px; max-width: 56ch; margin-top: 18px; }

/* ════════════════ BUTTONS (shared) ════════════════ */

.fh-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font: 700 12.5px/1 var(--fh-display);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 16px 22px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.fh-root .fh-btn--dark { background: var(--fh-navy); color: #fff; }
.fh-root .fh-btn--dark:hover { background: var(--fh-navy-2); color: #fff; }
.fh-root .fh-btn--outline { background: transparent; color: var(--fh-ink); border-color: var(--fh-line-3); padding: 15px 22px; }
.fh-root .fh-btn--outline:hover { border-color: var(--fh-gold); color: var(--fh-gold); }
.fh-root .fh-btn--light { background: #fff; color: var(--fh-navy); }
.fh-root .fh-btn--light:hover { background: var(--fh-gold-bright); color: var(--fh-navy); }
.fh-root .fh-btn--outline-light { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.4); padding: 15px 22px; }
.fh-root .fh-btn--outline-light:hover { border-color: var(--fh-gold-bright); color: var(--fh-gold-bright); }
.fh-btn--sm { padding: 14px 20px; font-size: 12px; }
.fh-btn--sm.fh-btn--outline { padding: 13px 20px; }

.fh-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.fh-actions .fh-btn { min-width: 220px; justify-content: center; }

/* ════════════════ HERO (shared, brand-specialised) ════════════════ */

.fh-hero { background: #fff; }
.fh-hero .fh-container {
    padding-block: clamp(32px, 3vw, 48px) clamp(48px, 6vw, 88px);
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: clamp(32px, 3.5vw, 56px);
    align-items: center;
}
.fh-hero .fh-actions { margin-top: 28px; }
.fb-hero-brandline {
    display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
    margin: 0 0 22px;
}
.fb-hero-logo {
    height: 40px; width: auto; max-width: 190px; object-fit: contain; object-position: left center;
}
.fb-hero-origin {
    font: 800 11px/1.3 var(--fh-display); letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--fh-muted);
    padding-left: 16px; border-left: 1px solid var(--fh-line-2);
}
.fh-hero-promise {
    margin: 18px 0 0;
    padding-left: 14px;
    border-left: 2px solid var(--fh-gold);
    max-width: 54ch;
    font: 500 13.5px/1.6 var(--fh-text);
    color: var(--fh-muted);
}
.fh-hero-promise strong { color: var(--fh-ink); font-weight: 800; }

.fh-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(24px, 3vw, 44px);
    row-gap: clamp(28px, 3vw, 40px);
    margin-top: clamp(32px, 4vw, 52px);
}
.fh-stat { min-width: 0; }
.fh-stat-value { font: 800 26px/1 var(--fh-display); letter-spacing: -0.02em; color: var(--fh-ink); }
.fh-stat-value em { font-style: normal; color: var(--fh-gold); }
.fh-stat-label { margin-top: 6px; font: 500 12.5px/1.4 var(--fh-text); color: var(--fh-muted); }

.fh-hero-card { background: #fff; border: 1px solid var(--fh-line); box-shadow: 0 22px 55px -40px rgba(7, 23, 39, 0.42); }
.fh-hero-stage {
    position: relative;
    height: clamp(260px, 26vw, 360px);
    display: grid;
    place-items: center;
    background: #fff;
    overflow: hidden;
}
.fh-hero-stage img {
    position: absolute;
    top: 6%; left: 9%;
    width: 82%; height: 88%;
    max-width: none; max-height: none;
    object-fit: contain;
    object-position: 50% 50%;
    animation: fitcoFade 0.45s ease;
}
@media (min-width: 1025px) {
    .fh-hero-stage { height: clamp(340px, 32vw, 440px); }
    .fh-hero-stage img { top: 1%; left: 2%; width: 96%; height: 98%; }
}
.fh-hero-card-meta { padding: 16px 18px 6px; border-top: 1px solid rgba(11, 34, 57, 0.09); }
.fh-hero-card-brand { font: 700 12px/1 var(--fh-display); letter-spacing: 0.12em; text-transform: uppercase; color: var(--fh-gold); }
.fh-hero-card-name { margin: 7px 0 0; font: 800 19px/1.2 var(--fh-display); color: var(--fh-ink); }
.fh-hero-card-spec { margin: 7px 0 0; font: 600 12.5px/1.5 var(--fh-display); color: var(--fh-muted); }

/* Grid, not flex: the thumb count differs per brand page (5 for Wabash and
   Carver, 2 for Willi Kopp). Auto-fill keeps every tile the same size on every
   page, and a wrapped last item stays tile-sized instead of stretching to fill
   its own row. */
.fh-thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(52px, 1fr));
    gap: 6px;
    padding: 14px 18px 18px;
}
.fh-thumb {
    min-width: 0; height: 46px;
    background: #fff; border: 1px solid var(--fh-line);
    padding: 4px; cursor: pointer;
    display: grid; place-items: center; overflow: hidden;
    transition: border-color 0.15s ease, background-color 0.15s ease;
}
.fh-thumb img { width: 100%; height: 36px; max-width: 100%; object-fit: contain; object-position: 50% 50%; }
.fh-thumb:hover { border-color: var(--fh-line-3); }
.fh-thumb.is-active { background: #fff; border-color: var(--fh-gold); }

/* ════════════════ DECISION CARDS (#selection), brand-only ════════════════ */

.fb-decision-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    border-top: 1px solid var(--fh-line);
    border-left: 1px solid var(--fh-line);
}
.fb-decision-card {
    display: flex; flex-direction: column; gap: 10px;
    padding: 26px 24px 28px;
    background: #fff;
    border-right: 1px solid var(--fh-line);
    border-bottom: 1px solid var(--fh-line);
    position: relative;
}
.fb-decision-card::before {
    content: ""; position: absolute; left: -1px; top: -1px; width: 40px; height: 2px;
    background: var(--fh-gold);
}
.fb-decision-q { margin: 0; font: 800 18px/1.25 var(--fh-display); letter-spacing: -0.01em; color: var(--fh-ink); }
.fb-decision-a { margin: 0; font: 500 14px/1.6 var(--fh-text); color: var(--fh-muted); }

/* ════════════════ PRODUCT RANGE GRID (#products), brand-only ════════════════ */

.fb-products-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px 22px;
}
.fb-product-card {
    display: flex; flex-direction: column;
    background: #fff;
    border: 1px solid var(--fh-line);
    text-decoration: none;
    transition: border-color 0.15s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.fb-product-card:hover {
    border-color: var(--fh-line-3);
    box-shadow: 0 22px 40px -34px rgba(7, 23, 39, 0.5);
    transform: translateY(-2px);
}
.fb-product-media {
    height: 168px;
    display: grid; place-items: center;
    padding: 18px;
    background: #fff;
    border-bottom: 1px solid var(--fh-line);
    overflow: hidden;
}
.fb-product-media img { max-width: 88%; max-height: 132px; width: auto; height: auto; object-fit: contain; }
.fb-product-body { display: flex; flex-direction: column; gap: 7px; padding: 16px 18px 18px; flex: 1; }
.fb-product-name { font: 800 15px/1.25 var(--fh-display); letter-spacing: -0.01em; color: var(--fh-ink); }
.fb-product-desc { font: 500 12.5px/1.5 var(--fh-text); color: var(--fh-muted); flex: 1; }
.fb-product-more {
    margin-top: 4px;
    font: 800 10.5px/1 var(--fh-display); letter-spacing: 0.06em; text-transform: uppercase;
    color: var(--fh-gold);
}
.fb-product-more::after { content: " \2192"; display: inline-block; transition: transform 0.15s ease; }
.fb-product-card:hover .fb-product-more::after { transform: translateX(4px); }

/* Two-up product layout (Willi Kopp) reads as feature cards, not a dense grid. */
.fb-products-grid--duo { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.fb-products-grid--duo .fb-product-media { height: 260px; }
.fb-products-grid--duo .fb-product-media img { max-height: 220px; }
.fb-products-grid--duo .fb-product-name { font-size: 19px; }
.fb-products-grid--duo .fb-product-desc { font-size: 13.5px; }

/* ════════════════ CAPABILITY / CONFIRM GRID, brand-only ════════════════ */

.fb-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px 24px;
}
.fb-feature {
    display: flex; flex-direction: column; gap: 8px;
    padding: 22px 22px 22px 0;
    border-top: 1px solid var(--fh-line);
}
.fb-feature-title { margin: 0; font: 800 16px/1.25 var(--fh-display); letter-spacing: -0.01em; color: var(--fh-ink); }
.fb-feature-text { margin: 0; font: 500 13.5px/1.6 var(--fh-text); color: var(--fh-muted); }

/* Application cards carry a standard tag (folds schema-only standards into copy). */
.fb-app-tag {
    align-self: flex-start;
    font: 800 10.5px/1 var(--fh-display); letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--fh-gold);
    padding: 6px 8px; border: 1px solid var(--fh-line-2);
}

/* ════════════════ SPEC PANEL (Willi Kopp parameters), brand-only ════════════════ */

.fb-spec-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    border-top: 1px solid var(--fh-line);
}
.fb-spec-row {
    display: grid;
    grid-template-columns: minmax(180px, 0.5fr) 1fr;
    gap: 20px;
    padding: 16px 0;
    border-bottom: 1px solid var(--fh-line);
    align-items: baseline;
}
.fb-spec-key { font: 800 12px/1.3 var(--fh-display); letter-spacing: 0.02em; text-transform: uppercase; color: var(--fh-ink); }
.fb-spec-val { font: 500 14px/1.6 var(--fh-text); color: var(--fh-muted); }

/* ════════════════ VIDEO THEATRE (shared with HOME v2) ════════════════ */

.fh-videos { background: #fff; }
.fh-video-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.42fr) minmax(300px, 0.58fr);
    gap: clamp(24px, 4vw, 52px);
    align-items: start;
}
.fh-video-player { min-width: 0; background: #fff; border-top: 1px solid var(--fh-line); }
.fh-video-stage { position: relative; width: 100%; aspect-ratio: 16 / 9; overflow: hidden; background: #000; }
.fh-video-stage iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.fh-video-stage img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.fh-video-poster { position: absolute; inset: 0; cursor: pointer; border: 0; padding: 0; background: transparent; }
.fh-video-poster::after {
    content: ""; position: absolute; inset: 0; margin: auto;
    width: 74px; height: 74px; border-radius: 50%;
    background: #fff;
    box-shadow: 0 16px 40px -12px rgba(0, 0, 0, 0.55);
}
.fh-video-poster::before {
    content: ""; position: absolute; inset: 0; margin: auto; z-index: 1;
    width: 0; height: 0;
    border-style: solid; border-width: 11px 0 11px 18px;
    border-color: transparent transparent transparent var(--fh-navy);
    transform: translateX(3px);
}
.fh-video-poster:hover::after { background: var(--fh-gold-bright); }
.fh-video-current { padding: 20px 0 0; }
.fh-video-current > span {
    display: block; margin-bottom: 8px;
    font: 700 11px/1 var(--fh-display); letter-spacing: 0.12em; text-transform: uppercase; color: var(--fh-gold);
}
.fh-video-current strong { display: block; font: 800 clamp(19px, 2vw, 25px)/1.2 var(--fh-display); color: var(--fh-ink); }
.fh-video-current p { max-width: 68ch; margin: 10px 0 0; font: 500 13.5px/1.6 var(--fh-text); color: var(--fh-muted); }
.fh-video-catalog { min-width: 0; }
.fh-video-list {
    display: grid; gap: 0;
    border-top: 1px solid var(--fh-line);
}
.fh-video-option {
    width: 100%; min-width: 0;
    padding: 12px 0;
    display: grid; grid-template-columns: 112px minmax(0, 1fr); gap: 14px; align-items: center;
    text-align: left;
    background: #fff; color: var(--fh-ink);
    border: 0; border-bottom: 1px solid var(--fh-line);
    cursor: pointer;
    transition: background-color 0.15s ease, padding 0.15s ease;
}
.fh-video-option:hover { background: #F7F8F9; padding-inline: 8px; }
.fh-video-option.is-active { background: #F2F4F6; padding-inline: 8px; }
.fh-video-option img { width: 112px; height: 66px; object-fit: cover; background: #000; }
.fh-video-option span { min-width: 0; }
.fh-video-option strong { display: block; font: 750 13px/1.25 var(--fh-display); color: var(--fh-ink); }
.fh-video-option small { display: block; margin-top: 5px; font: 600 11px/1.3 var(--fh-text); color: var(--fh-muted); }

/* ════════════════ COMPARISON BAND, brand-only ════════════════ */

.fb-compare-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(28px, 4vw, 56px);
    align-items: start;
}
.fb-compare-points { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.fb-compare-point {
    font: 700 12px/1 var(--fh-display); letter-spacing: 0.02em;
    color: var(--fh-cloud);
    border: 1px solid rgba(255, 255, 255, 0.24);
    padding: 9px 12px;
}
.fb-compare-aside { border-top: 1px solid rgba(255, 255, 255, 0.22); }
.fb-compare-aside h3 { margin: 0; padding-top: 22px; font: 800 17px/1.3 var(--fh-display); color: #fff; }
.fb-compare-aside p { margin: 12px 0 0; font: 500 14px/1.65 var(--fh-text); color: var(--fh-cloud); }

/* ════════════════ WORLDWIDE STRIP, brand-only ════════════════ */

.fb-worldwide-names { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.fb-worldwide-name {
    font: 700 13px/1 var(--fh-display); letter-spacing: 0.01em;
    color: var(--fh-ink);
    border: 1px solid var(--fh-line-2);
    padding: 11px 14px;
}
.fb-worldwide-note {
    max-width: 90ch; margin: 20px 0 0;
    font: 500 11.5px/1.55 var(--fh-text); color: var(--fh-muted);
}
.fb-worldwide-note strong { color: var(--fh-ink); font-weight: 800; }

/* ════════════════ FAQ ACCORDION, brand-only ════════════════ */

.fb-faq-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 40px; }
.fb-faq { border-bottom: 1px solid var(--fh-line); }
.fb-faq > summary {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 20px 0;
    cursor: pointer; list-style: none;
    font: 800 15px/1.35 var(--fh-display); letter-spacing: -0.01em; color: var(--fh-ink);
}
.fb-faq > summary::-webkit-details-marker { display: none; }
.fb-faq > summary::after {
    content: "+"; margin-left: auto;
    font: 700 20px/1 var(--fh-display); color: var(--fh-gold);
    transition: transform 0.2s ease;
}
.fb-faq[open] > summary::after { transform: rotate(45deg); }
.fb-faq-answer { margin: 0; padding: 0 0 22px; font: 500 14px/1.65 var(--fh-text); color: var(--fh-muted); max-width: 60ch; }

/* ════════════════ CTA FINALE (shared with HOME v2) ════════════════ */

.fh-final-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
    gap: clamp(40px, 6vw, 96px);
    align-items: center;
}
.fh-final .fh-actions { margin-top: 30px; }
.fh-final-exchange { margin: 0; border-top: 1px solid rgba(255, 255, 255, 0.22); }
.fh-final-exchange > div { padding: 20px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.22); }
.fh-final-exchange dt { font: 800 11px/1 var(--fh-display); letter-spacing: 0.14em; text-transform: uppercase; color: var(--fh-gold-bright); }
.fh-final-exchange dd { margin: 8px 0 0; font: 700 15px/1.45 var(--fh-display); color: #fff; }

/* ════════════════ RESPONSIVE ════════════════ */

@media (max-width: 1024px) {
    .fb-products-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .fb-feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .fb-compare-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
    .fh-hero .fh-container { grid-template-columns: 1fr; gap: 0; }
    .fh-hero .fh-container > div:first-child { display: contents; }
    .fh-hero-card { order: 6; margin-top: 32px; }
    .fh-stats { order: 7; margin-top: 36px; }
    .fh-split { grid-template-columns: 1fr; gap: 12px; }
    .fh-split .fh-eyebrow { padding-top: 0; }
    .fb-decision-grid { grid-template-columns: 1fr; }
    .fb-products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .fb-products-grid--duo { grid-template-columns: 1fr; }
    .fh-video-layout { grid-template-columns: 1fr; }
    .fh-final-grid { grid-template-columns: 1fr; }
    .fb-faq-grid { grid-template-columns: 1fr; gap: 0; }
    .fb-spec-row { grid-template-columns: 1fr; gap: 4px; }
}

@media (max-width: 560px) {
    .fh-container { padding-inline: 18px; }
    .fb-products-grid { grid-template-columns: 1fr; }
    .fb-feature-grid { grid-template-columns: 1fr; }
    .fh-stats { grid-template-columns: 1fr 1fr; }
    .fh-thumbs { grid-template-columns: repeat(auto-fill, minmax(46px, 1fr)); }
    .fh-btn { width: 100%; justify-content: center; }
    .fh-actions { flex-direction: column; align-items: stretch; }
    .fh-actions .fh-btn { min-width: 0; }
    .fb-hero-origin { padding-left: 0; border-left: 0; }
}

/* ════════════════ REDUCED MOTION ════════════════ */

@media (prefers-reduced-motion: reduce) {
    .fb-root.fb-anim .fb-reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
    .fh-hero-stage img { animation: none !important; }
    .fh-root * { scroll-behavior: auto !important; }
}

/* ════════════════ HARDENING ════════════════
   Protect the brand pages from WordPress/WPBakery/plugin CSS (img{height:auto
   !important; width:100%}, empty <p> injection, link underlines). These are the
   only sanctioned !important uses on these pages. */

.fb-root p:empty { display: none !important; }
.fh-root a { text-decoration: none !important; box-shadow: none !important; }
.fh-root :where(ul, ol) { list-style: none; margin: 0; padding: 0; }
.fh-root .fb-product-media img,
.fh-root .fh-hero-stage img,
.fh-root .fb-hero-logo,
.fh-root .fh-thumb img,
.fh-root .fh-video-option img {
    max-width: 100% !important;
}
.fh-root .fb-product-media img { max-height: 132px !important; height: auto !important; width: auto !important; }
.fh-root .fb-products-grid--duo .fb-product-media img { max-height: 220px !important; }
.fh-root .fb-hero-logo { height: 40px !important; width: auto !important; }
