/* Editorial strategy: restrained typography, architectural space, signal red. */
:root {
    --ink: #202322;
    --muted: #6b6d69;
    --paper: #f5f4f0;
    --red: #c13d31;
    --red-dark: #a73026;
    --line: #deded7;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 28px;
}

body {
    margin: 0;
    background: var(--white);
    color: var(--ink);
    font-family: Arial, Helvetica, sans-serif;
    -webkit-font-smoothing: antialiased;
}

body.modal-open {
    overflow: hidden;
}

button, a {
    -webkit-tap-highlight-color: transparent;
}

button {
    font: inherit;
    cursor: pointer;
}

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

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

h1, h2, h3, p {
    margin: 0;
}

button, a {
    touch-action: manipulation;
}

button:focus-visible, a:focus-visible {
    outline: 2px solid var(--red);
    outline-offset: 6px;
}

::selection {
    background: #efd5cb;
    color: var(--ink);
}

[hidden] {
    display: none !important;
}

.icon-library {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.icon {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    flex: 0 0 auto;
}

.page-width {
    width: min(1280px, calc(100% - 112px));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    top: -100px;
    left: 20px;
    z-index: 100;
    padding: 14px 24px;
    background: var(--ink);
    color: white;
}

.skip-link:focus {
    top: 10px;
}

.site-header {
    position: relative;
    z-index: 20;
    background: var(--paper);
    border-bottom: 1px solid #deded78c;
}

.header-inner {
    min-height: 98px;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    font-size: 21px;
    font-weight: 750;
    letter-spacing: -.9px;
}

.brand-mark {
    width: 38px;
    height: 36px;
    color: var(--red);
}

.brand-suffix {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .5px;
    margin-left: 3px;
}

.desktop-nav {
    gap: 35px;
    margin-left: auto;
    margin-right: 40px;
}

.desktop-nav a {
    font-size: 13px;
    transition: color .2s;
}

.desktop-nav a:hover {
    color: var(--red);
}

.button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
    padding: 18px 23px;
    border: 1px solid transparent;
    min-height: 54px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
    transition: background .2s, transform .2s;
}

.button:hover {
    transform: translateY(-2px);
}

.button-red {
    background: var(--red);
    color: white;
}

.button-red:hover {
    background: var(--red-dark);
}

.button-dark {
    background: var(--ink);
    color: white;
}

.button-dark:hover {
    background: #3a3d3a;
}

.header-cta {
    padding: 14px 19px;
    min-height: 45px;
    gap: 30px;
}

.header-cta .icon {
    width: 16px;
    height: 16px;
}

.menu-toggle {
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    padding: 12px 8px;
}

.menu-toggle span {
    display: block;
    height: 1.5px;
    background: var(--ink);
    margin: 6px 0;
    transition: transform .2s;
}

.menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.75px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.75px) rotate(-45deg);
}

.mobile-menu {
    position: absolute;
    inset: 100% 0 auto;
    padding: 16px 24px 26px;
    background: var(--paper);
    box-shadow: 0 14px 20px #20232212;
}

.mobile-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 19px 0;
    border-bottom: 1px solid var(--line);
    font-size: 17px;
}

.mobile-menu a span {
    font-size: 11px;
    color: var(--red);
}

.hero {
    position: relative;
    overflow: hidden;
    background: var(--paper);
}

.hero-inner {
    position: relative;
    min-height: 714px;
    padding-top: 66px;
    padding-bottom: 67px;
}

.hero-image-wrap {
    position: absolute;
    inset: 0 0 0 auto;
    width: 55%;
}

.hero-image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--paper), #f5f4f040 24%, transparent 48%), linear-gradient(0deg, #20232216, transparent 40%);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 52% 59%;
    filter: saturate(.55);
}

.hero-copy {
    position: relative;
    z-index: 1;
    width: 58%;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.7px;
    line-height: 1.6;
    text-transform: uppercase;
}

.red-line {
    display: inline-block;
    width: 22px;
    height: 2px;
    background: var(--red);
    flex: 0 0 auto;
}

body h1 {
    margin-top: 29px;
    font-size: clamp(64px, 6.7vw, 96px);
    font-weight: 500;
    letter-spacing: -5.5px;
    line-height: 1.025;
}

h1 > span {
    color: var(--red);
}

.hero-description {
    margin-top: 25px;
    font-size: 16px;
    line-height: 1.7;
    color: #676963;
}

.hero-actions {
    gap: 29px;
    margin-top: 29px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-size: 12px;
    font-weight: 600;
    padding-block: 9px;
}

.text-link .icon {
    width: 18px;
    transition: transform .2s;
}

.text-link:hover {
    color: var(--red);
}

.text-link:hover .icon {
    transform: translateX(4px);
}

.hero-note {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 29px;
    font-size: 10px;
    color: var(--muted);
    letter-spacing: .2px;
}

.status-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--red);
    flex: 0 0 auto;
}

.perspective-card {
    position: absolute;
    right: 0;
    bottom: 70px;
    width: 300px;
    padding: 23px 25px 21px;
    background: #f7f7f0f0;
    backdrop-filter: blur(14px);
    border-top: 2px solid var(--red);
}

.perspective-card .eyebrow {
    font-size: 8px;
    letter-spacing: 1.3px;
}

.perspective-card > p {
    margin: 24px 0;
    font-size: 20px;
    letter-spacing: -.6px;
    line-height: 1.4;
}

.perspective-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid #d7d8d0;
    font-size: 10px;
}

.perspective-bottom > span:nth-child(even) {
    color: var(--red);
}

.hero-scroll {
    position: absolute;
    right: 0;
    bottom: 25px;
    display: flex;
    align-items: center;
    gap: 44px;
    font-size: 9px;
    letter-spacing: .7px;
}

.hero-scroll > span:last-child {
    font-size: 17px;
}

.expertise-ribbon {
    background: #252a28;
    color: #d5d6ce;
}

.ribbon-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80px;
    gap: 36px;
}

.ribbon-inner > p {
    font-size: 10px;
    color: #a5a8a1;
}

.ribbon-inner > div {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 11px;
}

.ribbon-inner i {
    width: 3px;
    height: 3px;
    background: #b8bcb3;
    transform: rotate(45deg);
}

.section-space {
    padding-block: 104px;
}

.section-heading {
    gap: 60px;
    align-items: end;
}

body h2 {
    font-weight: 500;
    font-size: clamp(36px, 3.5vw, 49px);
    letter-spacing: -2px;
    line-height: 1.13;
}

.section-heading h2 {
    margin-top: 23px;
}

.section-intro {
    max-width: 440px;
    justify-self: end;
    padding-bottom: 4px;
    font-size: 14px;
    line-height: 1.8;
    color: var(--muted);
}

.services-grid {
    gap: 28px;
    margin-top: 58px;
}

.service-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-top: 1px solid var(--line);
    padding-top: 26px;
}

.service-top {
    width: 100%;
}

.service-icon {
    width: 35px;
    height: 35px;
    stroke: var(--red);
    stroke-width: 1.35;
    fill: none;
}

.service-top > span {
    font-size: 10px;
    color: #989b93;
}

body h3 {
    font-size: 23px;
    font-weight: 500;
    letter-spacing: -.7px;
    line-height: 1.25;
}

.service-card h3 {
    margin: 30px 0 16px;
}

.service-card > p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.8;
    max-width: 265px;
}

.service-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: auto;
    padding: 31px 0 12px;
    background: none;
    border: 0;
    border-bottom: 1px solid var(--line);
    font-size: 11px;
    font-weight: 600;
    text-align: left;
    transition: color .2s, border-color .2s;
}

.service-link .icon {
    width: 15px;
    height: 15px;
    transition: transform .2s;
}

.service-link:hover {
    color: var(--red);
    border-color: var(--red);
}

.service-link:hover .icon {
    transform: translate(2px, -2px);
}

.about-section {
    background: var(--paper);
}

.about-grid {
    gap: 90px;
}

.about-image-block {
    position: relative;
    padding-right: 15px;
    padding-bottom: 15px;
}

.about-image-block > img {
    aspect-ratio: 1.2;
    object-fit: cover;
    object-position: center;
    filter: saturate(.7);
}

.image-caption {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 24px;
    background: #232925;
    color: #f8f8f1;
    font-size: 10px;
    letter-spacing: .25px;
}

.image-caption .icon {
    width: 17px;
    height: 17px;
    color: #d5b7ac;
}

.image-corner {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 90px;
    height: 90px;
    border-bottom: 2px solid var(--red);
    border-right: 2px solid var(--red);
}

.about-copy h2 {
    margin-top: 24px;
    margin-bottom: 24px;
    font-size: clamp(34px, 3.1vw, 44px);
}

.about-copy > p:not(.eyebrow) {
    font-size: 13px;
    line-height: 1.85;
    color: var(--muted);
    margin-bottom: 17px;
}

.about-principles {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 26px 0 21px;
    font-size: 11px;
}

.check {
    color: var(--red);
    margin-right: 9px;
}

.about-copy > .text-link {
    border-bottom: 1px solid #b6b7ae;
    padding-bottom: 12px;
}

.process-grid {
    gap: 48px;
    margin-top: 55px;
}

.process-number {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--line);
    padding-top: 21px;
    margin-bottom: 30px;
}

.process-number > span {
    font-size: 12px;
    color: var(--red);
}

.process-number > .icon {
    width: 18px;
    height: 18px;
    color: #8b8e86;
}

.process-step h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.process-step > p {
    font-size: 13px;
    line-height: 1.85;
    color: var(--muted);
}

.process-tag {
    display: inline-block;
    margin-top: 24px;
    font-size: 9px;
    letter-spacing: .7px;
    text-transform: uppercase;
    color: #73776d;
}

.contact-footer {
    background: #222824;
    color: #f4f3eb;
    padding-top: 65px;
}

.contact-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-bottom: 41px;
    border-bottom: 1px solid #ffffff24;
}

.contact-top .eyebrow {
    font-size: 9px;
    letter-spacing: 1.5px;
}

.contact-top .red-line {
    background: #dd6c58;
}

.contact-availability {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    color: #b4b8ac;
}

.contact-availability .status-dot {
    background: #a6b69b;
}

.contact-grid {
    padding: 51px 0 64px;
    gap: 90px;
}

.contact-copy h2 {
    font-size: clamp(44px, 4.6vw, 65px);
    letter-spacing: -2.8px;
    line-height: 1.1;
}

.contact-copy h2 > span {
    color: #c9d0bd;
}

.contact-copy > p {
    margin-top: 24px;
    font-size: 13px;
    line-height: 1.8;
    color: #b4b8ac;
}

.contact-copy .button {
    margin-top: 29px;
}

.contact-details {
    padding-top: 9px;
}

.contact-detail {
    padding: 23px 0 26px;
    border-bottom: 1px solid #ffffff24;
}

.detail-label {
    display: block;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    color: #b4b8ac;
    margin-bottom: 13px;
}

.contact-detail > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-size: clamp(18px, 2vw, 28px);
    font-weight: 400;
    letter-spacing: -.6px;
    transition: color .2s;
}

.contact-detail > a:hover {
    color: #e18b76;
}

.contact-detail .icon {
    width: 20px;
    color: #bec2b4;
}

.address-detail {
    border-bottom: 0;
    padding-top: 29px;
}

address {
    font-style: normal;
    font-size: 16px;
    line-height: 1.7;
    color: #e0e2d8;
}

.footer-bottom {
    border-top: 1px solid #ffffff24;
    padding-block: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.footer-brand {
    font-size: 17px;
    gap: 9px;
}

.footer-brand .brand-mark {
    width: 30px;
    height: 28px;
    color: #d1d6c7;
}

.footer-brand .brand-suffix {
    font-size: 10px;
}

.footer-bottom > p {
    font-size: 9px;
    color: #9fa497;
}

.back-to-top {
    display: inline-flex;
    align-items: center;
    gap: 25px;
    font-size: 10px;
}

.back-to-top span {
    font-size: 19px;
}

.back-to-top:hover {
    color: #e18b76;
}

dialog {
    width: min(600px, calc(100% - 32px));
    max-height: calc(100dvh - 48px);
    padding: 0;
    border: none;
    margin: auto;
    background: var(--paper);
    color: var(--ink);
    overflow: auto;
}

dialog::backdrop {
    background: #151a17b3;
    backdrop-filter: blur(5px);
}

.dialog-content {
    position: relative;
    padding: 48px;
}

.dialog-close {
    position: absolute;
    right: 14px;
    top: 10px;
    height: 44px;
    width: 44px;
    border: 0;
    background: transparent;
    font-size: 30px;
    font-weight: 300;
    color: var(--ink);
}

.dialog-close:hover {
    color: var(--red);
}

.dialog-content h2 {
    margin-top: 25px;
    font-size: 38px;
    letter-spacing: -1.5px;
}

#dialog-description {
    font-size: 14px;
    line-height: 1.8;
    margin-top: 20px;
    color: var(--muted);
}

.dialog-content h3 {
    margin-top: 26px;
    font-size: 17px;
}

#dialog-focus {
    padding: 0;
    list-style: none;
    margin: 16px 0 24px;
}

#dialog-focus li {
    border-top: 1px solid var(--line);
    padding: 11px 0 11px 19px;
    position: relative;
    font-size: 13px;
    line-height: 1.7;
}

#dialog-focus li::before {
    content: "↗";
    position: absolute;
    left: 0;
    color: var(--red);
}

.dialog-outcome {
    border-left: 2px solid var(--red);
    padding: 4px 0 4px 18px;
    margin-bottom: 30px;
}

.dialog-outcome .detail-label {
    color: var(--muted);
}

.dialog-outcome p {
    font-size: 14px;
    line-height: 1.7;
}

/* Keep the core layout usable even if the requested Tailwind CDN is unavailable. */
.flex {
    display: flex;
}

.grid {
    display: grid;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.flex-wrap {
    flex-wrap: wrap;
}

@media (min-width: 768px) {
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .md\:hidden {
        display: none;
    }
    .md\:flex {
        display: flex;
    }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (min-width: 1600px) {
    .hero-image-wrap {
        width: 53%;
    }
    .hero-inner {
        min-height: 760px;
        padding-top: 82px;
    }
}

@media (max-width: 1100px) {
    .page-width {
        width: calc(100% - 72px);
    }
    .desktop-nav {
        gap: 23px;
        margin-right: 15px;
    }
    .brand {
        font-size: 19px;
    }
    .hero-inner {
        min-height: 680px;
    }
    body h1 {
        font-size: 77px;
        letter-spacing: -4.7px;
    }
    .hero-actions {
        gap: 17px;
    }
    .hero-actions .button {
        gap: 20px;
        padding-inline: 18px;
    }
    .hero-actions .text-link {
        font-size: 11px;
        gap: 10px;
    }
    .perspective-card {
        width: 258px;
        padding-inline: 20px;
    }
    .ribbon-inner {
        gap: 20px;
    }
    .ribbon-inner > p {
        max-width: 130px;
        line-height: 1.6;
    }
    .ribbon-inner > div {
        gap: 18px;
        font-size: 10px;
    }
    .section-space {
        padding-block: 80px;
    }
    .about-grid {
        gap: 48px;
    }
    .services-grid {
        column-gap: 28px;
        row-gap: 38px;
    }
    .section-heading {
        gap: 45px;
    }
    .process-grid {
        gap: 32px;
    }
    .process-step h3 {
        font-size: 20px;
    }
    .contact-grid {
        gap: 50px;
    }
}

@media (max-width: 767px) {
    .page-width {
        width: calc(100% - 44px);
    }
    .header-inner {
        min-height: 80px;
        gap: 16px;
    }
    .brand {
        font-size: 19px;
    }
    .brand-mark {
        width: 31px;
        height: 31px;
    }
    .brand-suffix {
        font-size: 10px;
    }
    .desktop-nav, .header-cta {
        display: none;
    }
    .hero-inner {
        padding-top: 44px;
        padding-bottom: 365px;
        min-height: 0;
    }
    .hero-copy {
        width: 100%;
    }
    .hero .eyebrow {
        font-size: 8px;
        gap: 9px;
        letter-spacing: 1.2px;
    }
    body h1 {
        font-size: clamp(55px, 12.8vw, 86px);
        line-height: 1.045;
        letter-spacing: -3.3px;
        margin-top: 26px;
    }
    .hero-description {
        font-size: 14px;
        line-height: 1.75;
        margin-top: 23px;
        max-width: 370px;
    }
    .hero-actions {
        margin-top: 25px;
        gap: 15px;
    }
    .hero-actions .button {
        font-size: 12px;
        padding: 16px;
        gap: 20px;
    }
    .hero-actions .text-link {
        font-size: 11px;
        gap: 8px;
    }
    .hero-note {
        margin-top: 22px;
        font-size: 9px;
    }
    .hero-image-wrap {
        width: 100%;
        height: 390px;
        top: auto;
        bottom: 0;
    }
    .hero-image {
        object-position: center 63%;
    }
    .hero-image-wrap::after {
        background: linear-gradient(180deg, var(--paper), #f5f4f000 35%);
    }
    .perspective-card {
        bottom: 50px;
        right: 0;
        width: 260px;
        padding: 20px;
    }
    .perspective-card > p {
        font-size: 20px;
        margin: 20px 0;
    }
    .hero-scroll {
        bottom: 15px;
        font-size: 8px;
        gap: 22px;
    }
    .ribbon-inner {
        min-height: 124px;
        padding-block: 23px;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .ribbon-inner > p {
        max-width: none;
        font-size: 9px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    .ribbon-inner > div {
        display: grid;
        grid-template-columns: 1fr 1fr;
        width: 100%;
        gap: 15px 25px;
        font-size: 11px;
    }
    .ribbon-inner i {
        display: none;
    }
    .section-space {
        padding-block: 65px;
    }
    .eyebrow {
        font-size: 9px;
        letter-spacing: 1.4px;
    }
    body h2 {
        font-size: 37px;
        letter-spacing: -1.6px;
    }
    .section-heading {
        gap: 24px;
    }
    .section-heading h2 {
        margin-top: 20px;
    }
    .section-intro {
        justify-self: start;
        font-size: 13px;
        max-width: 460px;
    }
    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 37px 23px;
        margin-top: 35px;
    }
    .service-card {
        padding-top: 20px;
    }
    .service-icon {
        width: 30px;
        height: 30px;
    }
    .service-card h3 {
        font-size: 21px;
        letter-spacing: -.7px;
        margin-top: 23px;
    }
    .service-card > p {
        font-size: 12px;
        line-height: 1.75;
    }
    .service-link {
        font-size: 10px;
        padding-top: 24px;
    }
    .about-grid {
        gap: 39px;
    }
    .about-image-block > img {
        aspect-ratio: 1.15;
    }
    .image-caption {
        font-size: 9px;
        padding: 19px;
    }
    .about-copy h2 {
        font-size: 36px;
        margin-top: 20px;
    }
    .about-copy > p:not(.eyebrow) {
        font-size: 13px;
    }
    .process-grid {
        margin-top: 34px;
        gap: 31px;
    }
    .process-number {
        margin-bottom: 19px;
    }
    .process-step h3 {
        font-size: 23px;
    }
    .process-tag {
        margin-top: 19px;
    }
    .contact-footer {
        padding-top: 41px;
    }
    .contact-top {
        padding-bottom: 27px;
    }
    .contact-top .eyebrow {
        font-size: 8px;
        letter-spacing: 1.1px;
    }
    .contact-availability {
        display: none;
    }
    .contact-grid {
        padding-top: 33px;
        padding-bottom: 34px;
        gap: 25px;
    }
    .contact-copy h2 {
        font-size: 52px;
        letter-spacing: -2.5px;
    }
    .contact-copy > p {
        margin-top: 20px;
    }
    .contact-copy .button {
        margin-top: 23px;
    }
    .contact-details {
        padding-top: 0;
    }
    .contact-detail {
        padding: 23px 0;
    }
    .contact-detail > a {
        font-size: 22px;
    }
    address {
        font-size: 15px;
    }
    .footer-bottom {
        flex-wrap: wrap;
        gap: 27px 20px;
        padding-block: 24px 28px;
    }
    .footer-bottom > p {
        order: 3;
        width: 100%;
    }
    .footer-brand {
        font-size: 16px;
    }
    .footer-brand .brand-mark {
        width: 25px;
    }
    .back-to-top {
        gap: 13px;
        font-size: 9px;
    }
    .dialog-content {
        padding: 42px 25px 29px;
    }
    .dialog-content h2 {
        font-size: 32px;
    }
}

@media (max-width: 359px) {
    .page-width {
        width: calc(100% - 36px);
    }
    .hero-actions {
        gap: 8px;
    }
    .hero-actions .button {
        padding-inline: 12px;
        gap: 10px;
        font-size: 11px;
    }
    .hero-actions .text-link {
        font-size: 10px;
    }
    .services-grid {
        gap: 34px 18px;
    }
    .service-card h3 {
        font-size: 19px;
    }
    .contact-detail > a {
        font-size: 19px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    *, *::before, *::after {
        transition: none !important;
        animation: none !important;
    }
}
