/* =====================================================================
   About us — redesigned page (?new)
   Brand palette: #FF6A00 orange (CTA only) · #111214 ink · #EDE3D5 milk
   ===================================================================== */

.ab-hero,
.ab-stats,
.ab-concept,
.ab-history,
.ab-founder,
.ab-team,
.ab-trust,
.ab-cta,
.ab-lightbox {  /* rendered as a sibling of the sections, so it needs the tokens too */
    --ab-orange: #FF6A00;
    /* Brand orange is only 2.3-2.9:1 on the light surfaces, so small text and
       thin graphics on milk/paper/white use this deeper tone (>= 4.5:1 on all
       three). #FF6A00 stays for the CTA fill and for anything on the dark ink. */
    --ab-orange-text: #AE4600;
    --ab-ink: #111214;
    --ab-milk: #EDE3D5;
    --ab-paper: #FAF7F2;
    --ab-body: #3A3A3A;
    --ab-muted: #6B6B6B;
    --ab-line: rgba(17, 18, 20, 0.12);
    font-family: Roboto, Arial, sans-serif;
}

/* ---------------------------------------------------------------------
   Shared section furniture
   --------------------------------------------------------------------- */

.ab-section__eyebrow {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--ab-orange-text);
    margin: 0 0 18px;
}

.ab-section__title {
    font-size: clamp(26px, 3.5vw, 42px);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -.02em;
    color: var(--ab-ink);
    margin: 0 0 20px;
}

.ab-section__lede {
    font-size: 17px;
    line-height: 1.65;
    color: var(--ab-body);
    max-width: 68ch;
    margin: 0;
}

/* ---- Buttons ---- */

.ab-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 14px 32px;
    font-family: inherit;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    text-decoration: none;
    line-height: 1;
    border: 1px solid transparent;
    border-radius: 2px;
    cursor: pointer;
    transition: background .22s ease, color .22s ease, border-color .22s ease;
}

.ab-btn__arrow {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.ab-btn--orange {
    background: var(--ab-orange);
    color: #FFFFFF;
    border-color: var(--ab-orange);
}

.ab-btn--orange:hover,
.ab-btn--orange:focus-visible {
    background: #E55F00;
    border-color: #E55F00;
    color: #FFFFFF;
}

.ab-btn--ink {
    background: var(--ab-ink);
    color: var(--ab-milk);
    border-color: var(--ab-ink);
}

.ab-btn--ink:hover,
.ab-btn--ink:focus-visible {
    background: transparent;
    color: var(--ab-ink);
}

.ab-btn--ghost {
    background: transparent;
    color: var(--ab-milk);
    border-color: rgba(237, 227, 213, .45);
}

.ab-btn--ghost:hover,
.ab-btn--ghost:focus-visible {
    background: var(--ab-milk);
    color: var(--ab-ink);
    border-color: var(--ab-milk);
}

/* Focus rings are never removed — keyboard users need them */
.ab-btn:focus-visible,
.ab-gallery__btn:focus-visible,
.ab-video:focus-visible,
.ab-hero__scroll:focus-visible,
.ab-lightbox__close:focus-visible,
.ab-lightbox__arrow:focus-visible {
    outline: 3px solid var(--ab-orange-text);
    outline-offset: 3px;
}

/* On the dark sections the brand orange has plenty of contrast */
.ab-hero__scroll:focus-visible,
.ab-lightbox__close:focus-visible,
.ab-lightbox__arrow:focus-visible,
.ab-cta .ab-btn:focus-visible {
    outline-color: var(--ab-orange);
}

/* ---- Scroll reveal ---- */

.js-ab-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
    will-change: opacity, transform;
}

.js-ab-reveal.is-visible {
    opacity: 1;
    transform: none;
}

/* ---------------------------------------------------------------------
   1. Hero
   --------------------------------------------------------------------- */

.ab-hero {
    position: relative;
    display: flex;
    align-items: flex-end;
    width: 100%;
    min-height: 620px;
    height: 100vh;
    height: 100dvh;
    max-height: 900px;
    overflow: hidden;
    background: #0A0A0A;
}

.ab-hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    opacity: .62;
}

.ab-hero__scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 10, .55) 0%,
        rgba(10, 10, 10, .10) 42%,
        rgba(10, 10, 10, .78) 100%
    );
}

.ab-hero__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px 132px;
    box-sizing: border-box;
}

.ab-hero__eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--ab-orange);
    margin: 0 0 18px;
}

.ab-hero__eyebrow-rule {
    display: inline-block;
    width: 48px;
    height: 2px;
    background: var(--ab-orange);
    flex-shrink: 0;
}

.ab-hero__title {
    font-size: clamp(2.6rem, 7vw, 5.5rem);
    font-weight: 900;
    line-height: .95;
    letter-spacing: -.01em;
    text-transform: uppercase;
    color: #FFFFFF;
    margin: 0 0 24px;
    max-width: 14ch;
}

.ab-hero__lede {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, .78);
    max-width: 62ch;
    margin: 0;
}

.ab-hero__actions {
    margin-top: 32px;
}

.ab-hero__scroll {
    position: absolute;
    left: 50%;
    bottom: 36px;
    transform: translateX(-50%);
    z-index: 3;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-height: 48px;
    padding: 8px 16px;
    color: rgba(255, 255, 255, .8);
    text-decoration: none;
    transition: color .22s ease;
}

.ab-hero__scroll:hover {
    color: #FFFFFF;
}

.ab-hero__scroll-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.ab-hero__scroll-icon {
    width: 22px;
    height: 22px;
    animation: ab-nudge 2s ease-in-out infinite;
}

@keyframes ab-nudge {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(5px); }
}

/* ---------------------------------------------------------------------
   2. Numbers strip
   --------------------------------------------------------------------- */

.ab-stats {
    background: var(--ab-ink);
    padding: 56px 24px;
    scroll-margin-top: 90px;
}

.ab-stats__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1140px;
    margin: 0 auto;
}

.ab-stats__item {
    text-align: center;
    padding: 0 12px;
    border-left: 1px solid rgba(237, 227, 213, .16);
}

.ab-stats__item:first-child {
    border-left: none;
}

.ab-stats__value {
    display: block;
    font-size: clamp(28px, 3.4vw, 40px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -.02em;
    color: var(--ab-milk);
    font-variant-numeric: tabular-nums;
    margin: 0 0 8px;
}

.ab-stats__label {
    display: block;
    margin: 0;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(237, 227, 213, .62);
}

/* ---------------------------------------------------------------------
   3. Concept + film
   --------------------------------------------------------------------- */

.ab-concept {
    background: var(--ab-paper);
    padding: 96px 24px;
}

.ab-concept__inner {
    max-width: 1140px;
    margin: 0 auto;
}

.ab-concept__head {
    max-width: 760px;
    margin: 0 0 44px;
}

.ab-concept__video {
    position: relative;
}

.ab-video {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    border: none;
    background: var(--ab-ink);
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 16 / 9;
}

.ab-video__poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}

.ab-video:hover .ab-video__poster {
    transform: scale(1.03);
}

.ab-video__scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10, 10, 10, .10), rgba(10, 10, 10, .48));
}

.ab-video__caption {
    position: absolute;
    left: 40px;
    bottom: 40px;
    max-width: 60%;
    text-align: left;
    font-size: clamp(20px, 2.6vw, 34px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -.01em;
    text-transform: uppercase;
    color: #FFFFFF;
}

.ab-video__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: rgba(17, 18, 20, .62);
    border: 2px solid rgba(255, 255, 255, .7);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .22s ease, border-color .22s ease;
}

.ab-video:hover .ab-video__play {
    background: var(--ab-orange);
    border-color: var(--ab-orange);
}

.ab-video__play svg {
    width: 40px;
    height: 40px;
    margin-left: 4px;
}

.ab-video__frame {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: none;
    border-radius: 4px;
    display: block;
}

/* ---------------------------------------------------------------------
   4. History timeline (left) + founder card (right)
   --------------------------------------------------------------------- */

.ab-history {
    background: var(--ab-milk);
    padding: 96px 24px;
}

.ab-history__inner {
    max-width: 1140px;
    margin: 0 auto;
}

.ab-history__head {
    margin: 0 0 56px;
}

.ab-history__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 64px;
    align-items: start;
}

.ab-timeline {
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0 0 0 46px;
}

.ab-timeline__rail {
    position: absolute;
    top: 8px;
    bottom: 8px;
    left: 11px;
    width: 2px;
    background: rgba(17, 18, 20, .14);
}

.ab-timeline__progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--ab-orange-text);
    transition: height .15s linear;
}

.ab-timeline__item {
    position: relative;
    padding: 0 0 40px;
}

.ab-timeline__item:last-child {
    padding-bottom: 0;
}

.ab-timeline__dot {
    position: absolute;
    top: 6px;
    left: -42px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--ab-milk);
    border: 2px solid rgba(17, 18, 20, .3);
    transition: background .3s ease, border-color .3s ease;
}

.ab-timeline__item.is-visible .ab-timeline__dot {
    background: var(--ab-orange-text);
    border-color: var(--ab-orange-text);
}

.ab-timeline__card {
    max-width: 62ch;
}

.ab-timeline__year {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -.01em;
    color: var(--ab-ink);
    font-variant-numeric: tabular-nums;
    margin: 0 0 8px;
}

.ab-timeline__text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--ab-body);
    margin: 0;
}

/* ---------------------------------------------------------------------
   5. Founder card — right column of the history section
   --------------------------------------------------------------------- */

.ab-founder {
    /* Follows the timeline while it scrolls past; the site header is fixed at ~90px */
    position: sticky;
    top: 110px;
    margin: 0;
    padding: 40px 34px;
    background-color: var(--ab-ink);
    background-image: linear-gradient(rgba(17, 18, 20, .86), rgba(17, 18, 20, .94)),
                      url('/images/backgrounds/about_us_history_bg.png');
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    overflow: hidden;
}

.ab-founder__mark {
    width: 34px;
    height: 26px;
    color: var(--ab-orange);
    margin: 0 0 22px;
    display: block;
}

.ab-founder__quote {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0;
    color: var(--ab-milk);
    margin: 0 0 30px;
    quotes: none;
}

.ab-founder__by {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 24px;
    border-top: 1px solid rgba(237, 227, 213, .16);
}

.ab-founder__photo {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid rgba(237, 227, 213, .3);
}

.ab-founder__id {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ab-founder__name {
    font-size: 15px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--ab-milk);
}

.ab-founder__role {
    font-size: 13px;
    line-height: 1.45;
    color: rgba(237, 227, 213, .62);
}

.ab-founder__role br {
    display: none;
}

/* ---------------------------------------------------------------------
   6. Team
   --------------------------------------------------------------------- */

.ab-team {
    background: var(--ab-paper);
    padding: 96px 24px;
}

.ab-team__inner {
    max-width: 1140px;
    margin: 0 auto;
}

.ab-team__head {
    max-width: 760px;
    margin: 0 0 48px;
}

.ab-team__grid {
    list-style: none;
    margin: 0 0 48px;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px 24px;
}

.ab-team__card {
    margin: 0;
}

/* Guides link through to their profile; office staff render the same card
   without an anchor, so both must look identical. */
.ab-team__card-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.ab-team__card-link:hover {
    color: inherit;
    text-decoration: none;
}

.ab-team__card-link:hover .ab-team__name {
    color: #FF6A00;
}

.ab-team__card-link:focus-visible {
    outline: 2px solid #FF6A00;
    outline-offset: 3px;
}

.ab-team__frame {
    position: relative;
    overflow: hidden;
    border-radius: 3px;
    background: #DED5C8;
    aspect-ratio: 4 / 5;
    margin: 0 0 16px;
}

.ab-team__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform .5s ease;
}

.ab-team__card:hover .ab-team__photo {
    transform: scale(1.04);
}

.ab-team__name {
    font-size: 15px;
    font-weight: 800;
    letter-spacing: .02em;
    color: var(--ab-ink);
    margin: 0 0 6px;
}

.ab-team__role {
    font-size: 14px;
    line-height: 1.55;
    color: var(--ab-muted);
    margin: 0;
}

.ab-team__more {
    text-align: center;
}

/* ---------------------------------------------------------------------
   7. Trust: long-form copy + picture wall
   --------------------------------------------------------------------- */

.ab-trust {
    background: #FFFFFF;
    padding: 96px 24px;
}

.ab-trust__inner {
    max-width: 1140px;
    margin: 0 auto;
}

.ab-trust__head {
    max-width: 760px;
    margin: 0 0 40px;
}

.ab-trust__gallery {
    margin: 0 0 48px;
}

.ab-gallery {
    list-style: none;
    margin: 0;
    padding: 0 0 12px;
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.ab-gallery::-webkit-scrollbar {
    height: 6px;
}

.ab-gallery::-webkit-scrollbar-track {
    background: rgba(17, 18, 20, .06);
}

.ab-gallery::-webkit-scrollbar-thumb {
    background: rgba(17, 18, 20, .28);
}

.ab-gallery__item {
    flex: 0 0 auto;
    scroll-snap-align: start;
}

.ab-gallery__btn {
    display: block;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    border-radius: 3px;
    overflow: hidden;
    line-height: 0;
}

.ab-gallery__img {
    width: 340px;
    height: 255px;
    object-fit: cover;
    display: block;
    transition: transform .45s ease, filter .3s ease;
}

.ab-gallery__btn:hover .ab-gallery__img {
    transform: scale(1.05);
}

/* Long-form copy from the CMS */
.ab-trust__body {
    max-width: 74ch;
    font-size: 16px;
    line-height: 1.8;
    color: var(--ab-body);
}

.ab-trust__body h2,
.ab-trust__body h3,
.ab-trust__body h4 {
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -.01em;
    color: var(--ab-ink);
    margin: 40px 0 14px;
}

.ab-trust__body h2 { font-size: 26px; }
.ab-trust__body h3 { font-size: 21px; }
.ab-trust__body h4 { font-size: 18px; }

.ab-trust__body p {
    margin: 0 0 18px;
}

.ab-trust__body ul,
.ab-trust__body ol {
    margin: 0 0 18px;
    padding-left: 22px;
}

.ab-trust__body li {
    margin: 0 0 8px;
}

.ab-trust__body a {
    color: var(--ab-ink);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: var(--ab-orange-text);
}

.ab-trust__body a:hover {
    color: var(--ab-orange-text);
}

.ab-trust__body img {
    max-width: 100%;
    height: auto;
    border-radius: 3px;
}

.ab-trust__body strong {
    color: var(--ab-ink);
}

/* ---- Lightbox ---- */

.ab-lightbox {
    position: fixed;
    inset: 0;
    z-index: 4000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 10, 10, .94);
    padding: 24px 72px;
}

.ab-lightbox[hidden] {
    display: none;
}

.ab-lightbox__img {
    max-width: 100%;
    max-height: 86vh;
    object-fit: contain;
    display: block;
}

.ab-lightbox__close,
.ab-lightbox__arrow {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid rgba(237, 227, 213, .3);
    border-radius: 50%;
    background: rgba(17, 18, 20, .6);
    color: var(--ab-milk);
    cursor: pointer;
    transition: background .22s ease, border-color .22s ease;
}

.ab-lightbox__close:hover,
.ab-lightbox__arrow:hover {
    background: var(--ab-orange);
    border-color: var(--ab-orange);
    color: #FFFFFF;
}

.ab-lightbox__close svg,
.ab-lightbox__arrow svg {
    width: 22px;
    height: 22px;
}

.ab-lightbox__close {
    top: 24px;
    right: 24px;
}

.ab-lightbox__arrow--prev { left: 16px; }
.ab-lightbox__arrow--next { right: 16px; }

.ab-lightbox__counter {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
    color: rgba(237, 227, 213, .7);
    font-variant-numeric: tabular-nums;
}

/* ---------------------------------------------------------------------
   8. Closing CTA
   --------------------------------------------------------------------- */

.ab-cta {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 340px;
    overflow: hidden;
}

.ab-cta__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.ab-cta__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(17, 18, 20, .62);
}

.ab-cta__inner {
    position: relative;
    z-index: 1;
    max-width: 820px;
    margin: 0 auto;
    padding: 72px 32px;
    text-align: center;
}

.ab-cta__eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--ab-orange);
    margin: 0 0 16px;
}

.ab-cta__title {
    font-size: clamp(1.7rem, 3.4vw, 2.9rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.01em;
    text-transform: uppercase;
    color: var(--ab-milk);
    margin: 0 0 16px;
}

.ab-cta__text {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(237, 227, 213, .78);
    max-width: 56ch;
    margin: 0 auto 32px;
}

.ab-cta__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

/* ---------------------------------------------------------------------
   Responsive
   --------------------------------------------------------------------- */

@media (max-width: 1024px) {
    .ab-hero__inner        { padding: 0 28px 120px; }
    .ab-team__grid         { grid-template-columns: repeat(3, 1fr); }

    /* Stack the timeline and the founder rather than squeeze both */
    .ab-history__grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 48px;
    }
    .ab-founder {
        position: static;
        max-width: 640px;
    }

    .ab-concept,
    .ab-history,
    .ab-team,
    .ab-trust              { padding: 76px 24px; }
    .ab-video__caption     { left: 28px; bottom: 28px; }
}

@media (max-width: 768px) {
    .ab-stats__inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px 16px;
    }
    .ab-stats__item:nth-child(odd) { border-left: none; }

    .ab-team__grid { grid-template-columns: repeat(2, 1fr); }

    .ab-gallery__img { width: 264px; height: 198px; }

    .ab-lightbox { padding: 16px; }
    .ab-lightbox__arrow--prev { left: 8px; }
    .ab-lightbox__arrow--next { right: 8px; }
    .ab-lightbox__close { top: 12px; right: 12px; }
}

@media (max-width: 600px) {
    .ab-hero {
        min-height: 520px;
        height: 82vh;
    }
    .ab-hero__inner { padding: 0 20px 104px; }
    .ab-hero__title { max-width: none; }
    .ab-hero__lede  { font-size: .95rem; }

    .ab-stats   { padding: 40px 20px; }
    .ab-concept,
    .ab-history,
    .ab-team,
    .ab-trust   { padding: 60px 20px; }

    .ab-section__lede { font-size: 16px; }

    .ab-video__play { width: 64px; height: 64px; }
    .ab-video__play svg { width: 28px; height: 28px; }
    .ab-video__caption {
        left: 20px;
        bottom: 20px;
        max-width: calc(100% - 40px);
    }

    .ab-timeline       { padding-left: 34px; }
    .ab-timeline__rail { left: 5px; }
    .ab-timeline__dot  { left: -34px; }

    .ab-founder        { padding: 32px 24px; }
    .ab-founder__quote { font-size: 16px; }

    .ab-team__grid { gap: 22px 16px; }

    .ab-gallery__img { width: 232px; height: 174px; }

    .ab-cta__inner { padding: 56px 20px; }
    .ab-cta__actions { flex-direction: column; }
    .ab-cta__actions .ab-btn { width: 100%; }
}

/* Landscape phones: the 100dvh hero would swallow the whole screen */
@media (max-height: 520px) and (orientation: landscape) {
    .ab-hero {
        height: auto;
        min-height: 420px;
        padding-top: 120px;
    }
    .ab-hero__scroll { display: none; }
}

/* ---------------------------------------------------------------------
   Reduced motion
   --------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
    .js-ab-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .ab-hero__scroll-icon { animation: none; }
    .ab-video__poster,
    .ab-team__photo,
    .ab-gallery__img {
        transition: none;
    }
    .ab-video:hover .ab-video__poster,
    .ab-team__card:hover .ab-team__photo,
    .ab-gallery__btn:hover .ab-gallery__img {
        transform: none;
    }
    .ab-timeline__progress { transition: none; }
}
