/* ================================================================
   FILE: css/styles.css
   NOTE: variables.css is loaded via <link> in HTML — no @import needed
   ================================================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.6;
    background-color: hsl(var(--color-bg));
    color: hsl(var(--color-text));
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background-color 0.3s ease, color 0.3s ease;
}

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

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

ul {
    list-style: none;
}

button, input, textarea {
    font-family: inherit;
    font-size: inherit;
    border: none;
    background: none;
    color: inherit;
}

button {
    cursor: pointer;
}

::selection {
    background-color: hsl(var(--color-accent));
    color: #fff;
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: hsl(var(--color-bg)); }
::-webkit-scrollbar-thumb { background: hsl(var(--color-border)); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: hsl(var(--color-text-muted)); }

/* --- Typography --- */
h1, h2, h3, h4, .font-heading {
    font-family: var(--font-heading);
    line-height: 1.1;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.accent-text {
    color: hsl(var(--color-accent));
}

.lead-text {
    font-size: var(--text-lg);
    font-weight: 500;
    margin-bottom: var(--space-sm);
    max-width: 65ch;
}

p {
    max-width: 65ch;
    margin-bottom: var(--space-sm);
}

/* --- Layout --- */
.container {
    width: min(90%, 1200px);
    margin: 0 auto;
}

.section-padding {
    padding: var(--space-xl) 0;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75em 1.5em;
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: hsl(var(--color-accent));
    color: #fff;
}

.btn-primary:hover {
    background-color: hsl(var(--color-accent-hover));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 101, 26, 0.4);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.7);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: #fff;
    transform: translateY(-2px);
}

.btn-large {
    padding: 1em 2em;
    font-size: var(--text-xl);
}

/* ================================================================
   HEADER — transparent over hero, solid after scroll
   ================================================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    z-index: 100;
    background-color: transparent;
    border-bottom: 1px solid transparent;
    transition: background-color 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, height 0.35s ease;
}

.site-header.scrolled {
    height: 70px;
    background-color: hsl(var(--color-bg) / 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom-color: hsl(var(--color-border) / 0.5);
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* Logo */
.logo-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
    background: none !important;
    transition: height 0.3s ease;
}

.site-header.scrolled .logo-img {
    height: 50px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    display: none; /* logo image has the text already */
}

/* Nav links — white when over hero, dark when scrolled */
.nav-link {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    padding: 0.5em 0;
    color: #fff;
    transition: color 0.3s ease;
}

.site-header.scrolled .nav-link {
    color: hsl(var(--color-text));
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: hsl(var(--color-accent));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-link:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-link:focus-visible {
    outline: 2px solid hsl(var(--color-accent));
    outline-offset: 4px;
    border-radius: 2px;
}

.main-nav {
    display: none;
}

.nav-list {
    display: flex;
    gap: var(--space-md);
}

/* Header actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.header-cta {
    display: none;
}


/* Hamburger */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    z-index: 101;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background-color: #fff;
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
    margin: 0 auto;
}

.site-header.scrolled .hamburger-line {
    background-color: hsl(var(--color-text));
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}
.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ================================================================
   HERO — full viewport cover
   ================================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    background: none;
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: linear-gradient(
        170deg,
        rgba(0,0,0,0.7) 0%,
        rgba(0,0,0,0.45) 50%,
        rgba(0,0,0,0.65) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 1.5rem;
}

.hero-title {
    font-size: var(--text-hero);
    margin-bottom: var(--space-sm);
    color: #fff;
    text-shadow: 2px 4px 12px rgba(0,0,0,0.5);
    line-height: 1.05;
}

.hero-line {
    display: block;
    overflow: hidden;
}

.hero-subtitle {
    font-size: var(--text-lg);
    font-weight: 500;
    margin-bottom: var(--space-md);
    color: rgba(255,255,255,0.92);
    text-shadow: 1px 2px 6px rgba(0,0,0,0.4);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Badges */
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: var(--space-md);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4em;
    padding: 0.55em 1em;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 4px;
    color: #fff;
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.hero-badge svg {
    color: hsl(var(--color-accent));
    flex-shrink: 0;
}

.hero-badge-phone {
    background: hsl(var(--color-accent));
    border-color: hsl(var(--color-accent));
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.hero-badge-phone:hover {
    background: hsl(var(--color-accent-hover));
    transform: translateY(-2px);
}

.hero-badge-phone svg {
    color: #fff;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

/* ================================================================
   ABOUT
   ================================================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    align-items: center;
    overflow: hidden;
}

.section-title {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-sm);
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5em;
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 600;
    text-transform: uppercase;
    background-color: hsl(var(--color-surface));
    padding: 0.5em 1em;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border: 1px solid hsl(var(--color-border));
}

.badge-icon {
    color: hsl(var(--color-accent));
}

.about-image-wrapper {
    position: relative;
    isolation: isolate;
}

.about-image-decoration {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 60%;
    height: 60%;
    background-color: hsl(var(--color-accent));
    z-index: -1;
}

.about-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}


/* ================================================================
   SERVICES — overlay bento grid
   ================================================================ */
.services {
    background-color: hsl(var(--color-surface-alt));
}

.section-header {
    margin-bottom: var(--space-lg);
    max-width: 600px;
}

.section-desc {
    color: hsl(var(--color-text-muted));
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    grid-auto-rows: 280px;
    grid-auto-flow: dense;
}

.service-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.service-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-card__img {
    transform: scale(1.08);
}

.service-card__overlay {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        transparent 100%
    );
    transition: background 0.4s ease;
}

.service-card:hover .service-card__overlay {
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.4) 60%,
        rgba(0, 0, 0, 0.1) 100%
    );
}

.service-card__title {
    font-size: var(--text-xl);
    color: #fff;
    margin-bottom: 0.25em;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.service-card__desc {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
    max-width: 40ch;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.service-card:hover .service-card__desc {
    opacity: 1;
    transform: translateY(0);
}

/* Featured cards span 2 columns on larger screens */
.service-card--featured {
    grid-row: span 1;
}

/* ================================================================
   CTA BANNER
   ================================================================ */
.cta-banner {
    background: linear-gradient(135deg, hsl(215, 25%, 12%) 0%, hsl(215, 25%, 6%) 100%);
    padding: var(--space-lg) 0;
    text-align: center;
}

.cta-heading {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: var(--space-md);
    max-width: none;
}

.cta-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.cta-item {
    display: flex;
    align-items: center;
    gap: 0.5em;
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.85);
}

.cta-item svg {
    color: hsl(var(--color-accent));
    flex-shrink: 0;
}

.cta-divider {
    width: 1px;
    height: 28px;
    background: rgba(255,255,255,0.2);
    display: none;
}

.cta-phone-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6em;
    padding: 0.75em 1.75em;
    background-color: hsl(var(--color-accent));
    color: #fff;
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    border-radius: 6px;
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-phone-btn:hover {
    background-color: hsl(var(--color-accent-hover));
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(244, 101, 26, 0.4);
}

@media (min-width: 768px) {
    .cta-divider {
        display: block;
    }

    .cta-item {
        font-size: var(--text-xl);
    }
}

/* ================================================================
   CONTACT
   ================================================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    align-items: start;
}

.contact-methods {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-top: var(--space-md);
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background-color: hsl(var(--color-surface));
    border: 1px solid hsl(var(--color-border));
    border-radius: 10px;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

a.contact-card:hover {
    border-color: hsl(var(--color-accent));
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    min-width: 44px;
    background-color: hsl(var(--color-accent));
    color: #fff;
    border-radius: 10px;
}

.contact-details {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: hsl(var(--color-text-muted));
    font-weight: 600;
}

.contact-value {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 700;
}

/* Form */
.contact-form {
    background-color: hsl(var(--color-surface));
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    border: 1px solid hsl(var(--color-border));
}

.form-title {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-md);
}

.form-group {
    position: relative;
    margin-bottom: var(--space-md);
}

.form-control {
    width: 100%;
    padding: 1rem 0 0.5rem;
    font-size: var(--text-base);
    border-bottom: 1px solid hsl(var(--color-border));
    outline: none;
    background: transparent;
    transition: border-color 0.2s ease;
}

.form-label {
    position: absolute;
    top: 1rem;
    left: 0;
    font-size: var(--text-base);
    color: hsl(var(--color-text-muted));
    transition: transform 0.2s ease, font-size 0.2s ease, color 0.2s ease;
    pointer-events: none;
    transform-origin: left top;
}

.form-control:focus ~ .form-label,
.form-control:not(:placeholder-shown) ~ .form-label {
    transform: translateY(-1.2rem) scale(0.85);
    color: hsl(var(--color-accent));
}

.form-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: hsl(var(--color-accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.form-control:focus ~ .form-border {
    transform: scaleX(1);
}

.btn-submit {
    width: 100%;
    gap: 0.5em;
    margin-top: var(--space-sm);
}

.form-success-msg {
    display: none;
    margin-top: var(--space-sm);
    padding: var(--space-sm);
    background-color: hsl(120, 40%, 90%);
    color: hsl(120, 60%, 20%);
    border-radius: 4px;
    font-weight: 500;
    text-align: center;
}


/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
    background-color: hsl(var(--color-text));
    color: hsl(var(--color-bg));
    padding: var(--space-md) 0;
    text-align: center;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 700;
    text-transform: uppercase;
}

.footer-logo {
    height: 45px;
    width: auto;
    object-fit: contain;
    background: none !important;
}

.footer-contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-sm);
    color: hsl(var(--color-text-muted));
}

.footer-contact a:hover {
    color: hsl(var(--color-accent));
}

.footer-copy {
    font-size: var(--text-xs);
    color: hsl(var(--color-text-muted));
    margin-top: var(--space-sm);
}

/* ================================================================
   STICKY MOBILE CTA
   ================================================================ */
.sticky-mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: hsl(var(--color-accent));
    color: #fff;
    padding: 1rem;
    padding-bottom: calc(1rem + env(safe-area-inset-bottom));
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 700;
    text-transform: uppercase;
    z-index: 99;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
}

/* ================================================================
   SCROLL PROGRESS BAR
   ================================================================ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: hsl(var(--color-accent));
    transform-origin: left;
    transform: scaleX(0);
    z-index: 1000;
}

/* ================================================================
   ANIMATIONS
   ================================================================ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes scaleUp {
    from { opacity: 0; transform: scale(0.9); }
    to   { opacity: 1; transform: scale(1); }
}


/* Scroll-reveal classes — GSAP sets initial hidden state in JS.
   If GSAP fails to load, content stays visible by default. */

/* ================================================================
   MOBILE-FIRST DEFAULTS (< 480px)
   ================================================================ */

/* On touch/mobile: always show service descriptions (no hover) */
@media (hover: none) {
    .service-card__desc {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Smaller hero button on mobile */
@media (max-width: 479px) {
    .btn-large {
        padding: 0.8em 1.5em;
        font-size: var(--text-lg);
        width: 100%;
    }

    .hero-title {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }

    .hero-badge {
        font-size: 0.85rem;
        padding: 0.45em 0.75em;
    }

    .hero-badges {
        gap: 0.5rem;
    }

    /* About decoration smaller on mobile */
    .about-image-decoration {
        top: -10px;
        left: -10px;
    }

    /* CTA section */
    .cta-heading {
        font-size: var(--text-xl);
    }

    .cta-phone-btn {
        font-size: var(--text-lg);
        padding: 0.7em 1.5em;
        width: 100%;
        justify-content: center;
    }

    .cta-row {
        flex-direction: column;
        gap: 1rem;
    }

    /* Contact form tighter padding */
    .contact-form {
        padding: 1.5rem;
    }

    /* Footer stacked */
    .footer-brand {
        font-size: var(--text-lg);
    }

}

/* Footer padding for sticky CTA — full mobile range */
@media (max-width: 767px) {
    .site-footer {
        padding-bottom: calc(var(--space-md) + 70px + env(safe-area-inset-bottom));
    }

    .hero-content {
        padding-bottom: 80px;
    }
}

/* ================================================================
   480px+ — 2 col services
   ================================================================ */
@media (min-width: 480px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 300px;
    }

    .service-card--featured {
        grid-column: span 2;
        grid-row: span 1;
    }
}

/* ================================================================
   768px+ — desktop nav, 2-col layouts
   ================================================================ */
@media (min-width: 768px) {
    .sticky-mobile-cta {
        display: none;
    }

    .site-footer {
        padding-bottom: var(--space-md);
    }

    .main-nav {
        display: block;
    }

    .mobile-menu-toggle {
        display: none;
    }

    .header-cta {
        display: inline-flex;
    }

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

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 320px;
    }

    .service-card--featured {
        grid-column: span 2;
    }

    .contact-grid {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }

    .contact-methods {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        flex-direction: row;
        justify-content: space-between;
    }

    .logo-img {
        height: 80px;
    }

    .site-header {
        height: 100px;
    }

    .site-header.scrolled {
        height: 70px;
    }

    html {
        scroll-padding-top: 110px;
    }
}

/* ================================================================
   1024px+ — 4 col services, bigger logo
   ================================================================ */
@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 340px;
    }

    .logo-img {
        height: 90px;
    }

    .site-header {
        height: 110px;
    }

    html {
        scroll-padding-top: 120px;
    }
}

/* ================================================================
   MOBILE MENU OVERLAY
   ================================================================ */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: hsl(var(--color-bg));
    z-index: 99;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding-top: 90px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu .nav-list {
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
}

.mobile-menu .nav-link {
    font-size: var(--text-3xl);
    color: hsl(var(--color-text));
}

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