@font-face {
    font-family: "Source Code Variable";
    src: url("../fonts/SourceCodeVariable-Roman.otf") format("opentype");
    font-display: swap;
}

:root {
    --paper: #f7f3e7;
    --surface: #ffffff;
    --surface-strong: #fffaf0;
    --ink: #15171a;
    --muted: #5e6670;
    --line: #dad6c8;
    --brand: #d71920;
    --brand-dark: #9f1118;
    --copper: #dd6536;
    --steel: #747b84;
    --deep: #101419;
    --blue: #1f4d5a;
    --green: #1f6a5b;
    --cream: #eee7b4;
    --shadow: 0 18px 44px rgba(18, 20, 24, 0.14);
    --header-height: 82px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
}

body.panel-open,
body.menu-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

button {
    border: 0;
}

.container {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 1000;
    transform: translateY(-140%);
    background: var(--deep);
    color: #fff;
    padding: 10px 14px;
    border-radius: 6px;
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(247, 243, 231, 0.94);
    border-bottom: 1px solid rgba(21, 23, 26, 0.08);
    backdrop-filter: blur(16px);
}

.header-inner {
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 220px;
}

.brand img {
    width: 90px;
    height: 90px;
    object-fit: contain;
}

.brand strong {
    display: block;
    color: var(--brand);
    font-size: 1.06rem;
    line-height: 1.1;
}

.brand small {
    display: block;
    max-width: 250px;
    color: var(--muted);
    font-family: "Source Code Variable", ui-monospace, monospace;
    font-size: 0.74rem;
    line-height: 1.25;
}

.desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: #30343a;
    font-weight: 700;
    font-size: 0.92rem;
}

.desktop-nav a {
    padding: 10px 12px;
    border-radius: 6px;
}

.desktop-nav a:is(:hover, :focus-visible),
.desktop-nav a.active {
    color: var(--brand);
    background: rgba(215, 25, 32, 0.08);
}

.header-tools {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.floor-status {
    min-width: 128px;
    padding: 8px 12px;
    color: var(--cream);
    background: #282c31;
    border: 1px solid #484e56;
    border-radius: 8px;
    box-shadow: inset 0 1px 5px rgba(0, 0, 0, 0.35);
}

.floor-status span,
.panel-display span {
    display: block;
    color: #b9c0c7;
    font-size: 0.68rem;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0;
}

.floor-status strong,
.panel-display strong {
    display: block;
    margin-top: 5px;
    color: var(--cream);
    font-family: "Source Code Variable", ui-monospace, monospace;
    font-size: 0.95rem;
    line-height: 1.15;
}

.elevator-button {
    width: 54px;
    height: 54px;
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    color: #fff;
    border-radius: 50%;
    border: 3px solid rgba(235, 235, 235, 0.72);
    outline: 1px solid #26282c;
    background: linear-gradient(
        to top right,
        #404041,
        #989a9d,
        #ffffff,
        #929497,
        #58595b,
        #797a7c,
        #bbbdbf,
        #ffffff,
        #929497,
        #58595b,
        #d0d2d3
    );
    box-shadow: inset 0 1px 5px rgba(255, 255, 255, 0.75), 0 7px 18px rgba(0, 0, 0, 0.22);
    font-weight: 900;
    line-height: 1;
    cursor: pointer;
}

.elevator-button.small {
    width: 42px;
    height: 42px;
    font-size: 1rem;
}

.elevator-button:is(:hover, :focus-visible),
.elevator-button.active {
    color: var(--cream);
    border-color: var(--cream);
    box-shadow: inset 0 1px 5px rgba(255, 255, 255, 0.78), 0 0 0 4px rgba(238, 231, 180, 0.28), 0 10px 22px rgba(0, 0, 0, 0.26);
}

.btn {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 8px;
    border: 1px solid transparent;
    font-weight: 800;
    line-height: 1.15;
    cursor: pointer;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:is(:hover, :focus-visible) {
    transform: translateY(-1px);
}

.btn.primary {
    background: var(--brand);
    color: #fff;
    box-shadow: 0 14px 28px rgba(215, 25, 32, 0.22);
}

.btn.primary:is(:hover, :focus-visible) {
    background: var(--brand-dark);
}

.btn.secondary {
    border-color: rgba(255, 255, 255, 0.7);
    color: #fff;
    background: rgba(16, 20, 25, 0.58);
}

.btn.secondary.light {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.32);
    background: rgba(255, 255, 255, 0.12);
}

.btn.full {
    width: 100%;
}

.menu-toggle {
    width: 44px;
    height: 44px;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    background: var(--deep);
    border-radius: 8px;
    cursor: pointer;
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
}

.mobile-nav {
    display: none;
    border-top: 1px solid var(--line);
    background: var(--paper);
}

.mobile-nav a {
    display: block;
    padding: 13px 20px;
    border-bottom: 1px solid var(--line);
    font-weight: 800;
}

.mobile-nav a.active {
    color: var(--brand);
    background: rgba(215, 25, 32, 0.08);
}

.site-header.mobile-open .mobile-nav {
    display: block;
}

.lift-panel-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: grid;
    place-items: center;
    padding: 24px;
    background: rgba(8, 10, 12, 0.72);
}

.lift-panel-overlay[hidden] {
    display: none;
}

.lift-panel {
    width: min(360px, 100%);
    max-height: calc(100vh - 48px);
    overflow: auto;
    position: relative;
    padding: 22px;
    color: #fff;
    background: #0f1115;
    border: 1px solid #3b4048;
    border-radius: 8px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
}

.panel-close {
    position: absolute;
    top: 0px;
    right: 4px;
    width: 34px;
    height: 34px;
    color: #fff;
    background: transparent;
    border-radius: 50%;
    font-size: 1.65rem;
    line-height: 1;
    cursor: pointer;
}

.panel-caption {
    display: block;
    margin-right: 42px;
    color: #bfc6cd;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0;
}

.panel-display {
    margin: 14px 0 18px;
    padding: 16px;
    background: #262b31;
    border: 1px solid #444b53;
    border-radius: 8px;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.42);
}

.lift-panel img {
    width: 230px;
    margin: 6px auto 14px;
    border-radius: 6px;
}

.lift-panel h2 {
    margin: 0 0 14px;
    text-align: center;
    font-size: 1.15rem;
}

.floor-grid {
    display: grid;
    grid-template-columns: repeat(3, 64px);
    justify-content: center;
    gap: 16px;
}

.floor-grid .elevator-button {
    width: 64px;
    height: 64px;
    font-size: 1.15rem;
}

.hero {
    position: relative;
    min-height: calc(100svh - 120px);
    display: grid;
    align-items: end;
    color: #fff;
    background: var(--deep);
    overflow: hidden;
}

.hero-media {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(8, 10, 12, 0.86) 0%, rgba(8, 10, 12, 0.64) 42%, rgba(8, 10, 12, 0.26) 100%),
        url("../images/optimized/hero.jpg") center / cover no-repeat;
    transform: scale(1.02);
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 36px;
    padding: 100px 0 34px;
}

.hero-copy {
    max-width: 720px;
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--copper);
    font-family: "Source Code Variable", ui-monospace, monospace;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0;
}

.hero .eyebrow {
    color: #f1b29a;
}

h1,
h2,
h3,
p {
    overflow-wrap: anywhere;
}

h1 {
    margin: 0;
    max-width: 840px;
    font-size: clamp(3rem, 4.7rem, 4.7rem);
    line-height: 0.96;
    letter-spacing: 0;
}

h2 {
    margin: 0;
    font-size: clamp(2rem, 2.7rem, 2.7rem);
    line-height: 1.08;
    letter-spacing: 0;
}

h3 {
    margin: 0;
    font-size: 1.24rem;
    line-height: 1.2;
}

.lead {
    max-width: 650px;
    margin: 22px 0 0;
    color: #f2efe4;
    font-size: 1.18rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.hero-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    max-width: 720px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    overflow: hidden;
}

.hero-proof div {
    min-height: 92px;
    padding: 18px;
    background: rgba(8, 10, 12, 0.6);
}

.hero-proof strong {
    display: block;
    font-size: 1.9rem;
    line-height: 1;
}

.hero-proof span {
    display: block;
    margin-top: 8px;
    color: #d9dde0;
    font-weight: 700;
}

.quick-strip {
    background: var(--surface);
    border-bottom: 1px solid var(--line);
}

.quick-strip-inner {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1px;
}

.quick-strip span {
    min-height: 64px;
    display: grid;
    place-items: center;
    padding: 12px;
    color: #30343a;
    border-left: 1px solid var(--line);
    font-weight: 800;
    text-align: center;
}

.quick-strip span:last-child {
    border-right: 1px solid var(--line);
}

.section {
    padding: 84px 0;
}

.section-heading {
    display: grid;
    gap: 14px;
    max-width: 760px;
    margin-bottom: 34px;
}

.section-heading.center {
    margin-inline: auto;
    text-align: center;
}

.section-heading.compact {
    margin-bottom: 0;
}

.section-heading p:not(.eyebrow) {
    margin: 0;
    color: var(--muted);
    font-size: 1.05rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.service-card {
    display: grid;
    grid-template-columns: 42% minmax(0, 1fr);
    min-height: 330px;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(18, 20, 24, 0.08);
}

.service-card:last-child {
    grid-column: 1 / -1;
    grid-template-columns: 36% minmax(0, 1fr);
}

.service-card img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
}

.service-body {
    padding: 24px;
}

.floor-pill {
    display: inline-flex;
    margin-bottom: 13px;
    padding: 5px 9px;
    color: var(--brand-dark);
    background: rgba(215, 25, 32, 0.09);
    border: 1px solid rgba(215, 25, 32, 0.16);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.service-body p {
    margin: 12px 0 0;
    color: var(--muted);
}

.service-body ul {
    display: grid;
    gap: 8px;
    margin: 18px 0 0;
    padding-left: 18px;
}

.service-body li::marker {
    color: var(--brand);
}

.process-band {
    color: #fff;
    background: var(--deep);
}

.process-inner {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 42px;
    align-items: start;
}

.process-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.process-list li {
    min-height: 112px;
    padding: 20px;
    background: #1f252c;
    border: 1px solid #323941;
    border-radius: 8px;
}

.process-list strong {
    display: block;
    color: var(--copper);
    font-size: 0.86rem;
}

.process-list span {
    display: block;
    margin-top: 10px;
    font-size: 1.04rem;
    font-weight: 800;
}

.about {
    position: relative;
    color: #fff;
    background: #181a1d;
    overflow: hidden;
}

.about-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(15, 17, 20, 0.92), rgba(15, 17, 20, 0.78)),
        url("../images/bgimage.gif") center / cover no-repeat;
    opacity: 0.98;
}

.about-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 42px;
    align-items: center;
}

.about-copy p:not(.eyebrow),
.about-mark p {
    color: #e8e2ce;
}

.about-copy p {
    margin: 18px 0 0;
}

.about-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.about-mark {
    display: grid;
    gap: 18px;
    justify-items: center;
    text-align: center;
}

.about-mark img {
    width: min(100%, 440px);
    background: rgba(0, 0, 0, 0.32);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
}

.about-mark p {
    max-width: 420px;
    margin: 0;
    font-weight: 800;
}

.industries {
    background: var(--surface);
}

.industries-inner {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 34px;
    align-items: center;
}

.industry-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.industry-list span {
    padding: 10px 13px;
    color: #273036;
    background: var(--surface-strong);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-weight: 800;
}

.gallery {
    background: #f0ebdc;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.gallery-grid figure {
    aspect-ratio: 4 / 3;
    margin: 0;
    overflow: hidden;
    background: #d5d0c3;
    border-radius: 8px;
}

.gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 220ms ease;
}

.gallery-grid figure:is(:hover, :focus-within) img {
    transform: scale(1.03);
}

.clients {
    background: var(--surface);
}

.client-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.client-list {
    padding: 26px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.client-list h3 {
    margin-bottom: 16px;
    color: var(--blue);
}

.client-list ul {
    columns: 2;
    column-gap: 28px;
    margin: 0;
    padding-left: 18px;
}

.client-list li {
    margin: 0 0 8px;
    break-inside: avoid;
    color: #32383e;
}

.faq {
    background: var(--paper);
}

.faq-inner {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 34px;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-list details {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.faq-list summary {
    padding: 18px 20px;
    cursor: pointer;
    font-weight: 900;
}

.faq-list p {
    margin: 0;
    padding: 0 20px 20px;
    color: var(--muted);
}

.contact {
    color: #fff;
    background: var(--deep);
}

.contact-inner {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 42px;
    align-items: start;
}

.contact-copy p:not(.eyebrow) {
    color: #dfe4e8;
}

.contact-methods {
    display: grid;
    gap: 12px;
    margin: 28px 0;
}

.contact-methods a {
    display: grid;
    gap: 3px;
    padding: 16px;
    color: #fff;
    background: #1d242b;
    border: 1px solid #333b44;
    border-radius: 8px;
}

.contact-methods span {
    color: #aeb8c2;
    font-size: 0.82rem;
    text-transform: uppercase;
}

address {
    color: #dfe4e8;
    font-style: normal;
}

.contact-form-wrap {
    padding: 26px;
    color: var(--ink);
    background: var(--surface);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.flash {
    margin-bottom: 16px;
    padding: 13px 14px;
    border-radius: 8px;
    font-weight: 800;
}

.flash.success {
    color: #0f3d31;
    background: #dff4ed;
    border: 1px solid #bce5d9;
}

.flash.error {
    color: #6e1017;
    background: #ffe6e8;
    border: 1px solid #ffc1c8;
}

.contact-form {
    display: grid;
    gap: 15px;
}

.contact-form label {
    display: grid;
    gap: 7px;
}

.contact-form span {
    color: #2e343a;
    font-size: 0.9rem;
    font-weight: 900;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    min-height: 48px;
    padding: 12px 13px;
    color: var(--ink);
    background: #fff;
    border: 1px solid #c9c4b6;
    border-radius: 8px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 4px rgba(215, 25, 32, 0.12);
    outline: 0;
}

.hidden-field {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-note {
    margin: 0;
    color: var(--muted);
    font-size: 0.86rem;
}

.site-footer {
    color: #f8f4e8;
    background: #0b0d10;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 112px;
    padding: 20px 0;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 900;
}

.footer-brand img {
    width: 48px;
    height: 46px;
    object-fit: contain;
}

.site-footer nav {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    color: #cbd1d8;
}

.site-footer p {
    margin: 0;
    color: #aab1b9;
}

.floating-call,
.back-to-top {
    position: fixed;
    z-index: 45;
    right: 18px;
    border-radius: 999px;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
}

.floating-call {
    bottom: 18px;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    padding: 0 18px;
    color: #fff;
    background: var(--green);
    font-weight: 900;
}

.back-to-top {
    bottom: 10px;
    width: 46px;
    height: 46px;
    display: none;
    place-items: center;
    color: #fff;
    background: var(--brand);
    cursor: pointer;
}

.back-to-top.visible {
    display: block;
}

.policy-page {
    width: min(860px, calc(100% - 32px));
    margin: 0 auto;
    padding: 38px 0 72px;
}

.policy-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
    color: var(--brand);
    font-weight: 900;
}

.policy-brand img {
    width: 52px;
    height: 50px;
    object-fit: contain;
}

.policy-content {
    padding: 34px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.policy-content h1 {
    color: var(--deep);
    font-size: 2.8rem;
}

.policy-content h2 {
    margin-top: 30px;
    color: var(--blue);
    font-size: 1.45rem;
}

.policy-content p {
    color: var(--muted);
}

.policy-content a {
    color: var(--brand);
    font-weight: 800;
}

@media (max-width: 1120px) {
    .desktop-nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

}

@media (max-width: 900px) {
    .topbar-inner {
        justify-content: center;
        flex-wrap: wrap;
        padding: 8px 0;
    }

    .floor-status,
    .desktop-cta {
        display: none;
    }

    .hero {
        min-height: auto;
    }

    .hero-inner {
        padding: 88px 0 32px;
    }

    .quick-strip-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .quick-strip span:last-child {
        grid-column: 1 / -1;
    }

    .service-grid,
    .service-card,
    .service-card:last-child,
    .process-inner,
    .about-inner,
    .industries-inner,
    .client-columns,
    .faq-inner,
    .contact-inner {
        grid-template-columns: 1fr;
    }

    .service-card img {
        min-height: 260px;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    :root {
        --header-height: 76px;
    }

    .container {
        width: min(100% - 24px, 1120px);
    }

    .brand {
        min-width: 0;
    }

    .brand img {
        width: 54px;
        height: 54px;
    }

    .brand small {
        display: none;
    }

    .header-tools {
        gap: 7px;
    }

    .elevator-button.small {
        width: 38px;
        height: 38px;
    }

    .hero-media {
        background:
            linear-gradient(180deg, rgba(8, 10, 12, 0.72) 0%, rgba(8, 10, 12, 0.86) 78%),
            url("../images/optimized/hero.jpg") center / cover no-repeat;
    }

    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-proof {
        grid-template-columns: 1fr;
    }

    .quick-strip-inner,
    .process-list {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 64px 0;
    }

    .service-card {
        min-height: auto;
    }

    .service-card img {
        min-height: 220px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .client-list ul {
        columns: 1;
    }

    .contact-form-wrap,
    .client-list,
    .service-body,
    .policy-content {
        padding: 20px;
    }

    .footer-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 420px) {
    .topbar a,
    .topbar span {
        white-space: normal;
        text-align: center;
    }

    .brand strong {
        font-size: 0.95rem;
    }

    .menu-toggle {
        width: 40px;
        height: 40px;
    }

    .header-inner {
        gap: 8px;
    }

    .hero-actions,
    .about-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .floor-grid {
        grid-template-columns: repeat(2, 64px);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
