:root {
    --burgundy-950: #240b0b;
    --burgundy-900: #381010;
    --burgundy-800: #5f1817;
    --burgundy-700: #8a202b;
    --brown-900: #240b0b;
    --brown-800: #381010;
    --gold-500: #8a202b;
    --gold-400: #b4474f;
    --gold-200: #f0dfe0;
    --ivory-100: #faf9f6;
    --ivory-50: #ffffff;
    --grey-900: #252424;
    --grey-700: #5e5c5c;
    --grey-300: #d8d3ca;
    --white: #ffffff;
    --shadow: 0 18px 48px rgba(35, 15, 12, 0.1);
    --radius: 10px;
    --container: 1280px;
}

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

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

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--ivory-50);
    color: var(--grey-900);
    font-family: "Segoe UI", Tahoma, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.9;
    text-align: right;
}

body,
button,
summary {
    font-family: "Segoe UI", Tahoma, Arial, sans-serif;
}

img,
video {
    display: block;
    max-width: 100%;
}

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

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

h1,
h2,
h3 {
    line-height: 1.45;
}

.container {
    width: min(calc(100% - 48px), var(--container));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    z-index: 10000;
    inset-block-start: 12px;
    inset-inline-start: 12px;
    padding: 9px 16px;
    background: var(--white);
    color: var(--burgundy-900);
    border: 2px solid var(--gold-400);
    border-radius: 6px;
    transform: translateY(-180%);
}

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

:focus-visible {
    outline: 3px solid var(--gold-400);
    outline-offset: 4px;
}

.loading-screen {
    position: fixed;
    z-index: 9999;
    inset: 0;
    display: grid;
    place-items: center;
    background: var(--burgundy-900);
    animation: loader-exit 1.45s ease forwards;
}

.loading-screen img {
    width: clamp(140px, 18vw, 230px);
    height: auto;
    filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.24));
}

.loading-screen::after {
    position: absolute;
    inset-block-start: calc(50% + clamp(92px, 12vw, 150px));
    inset-inline-start: 50%;
    width: clamp(120px, 14vw, 190px);
    height: 2px;
    content: "";
    background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
    transform: translateX(50%) scaleX(0);
    transform-origin: center;
    animation: loader-line 1.05s ease-in-out forwards;
}

@keyframes loader-line {
    0% { transform: translateX(50%) scaleX(0); opacity: 0; }
    35% { opacity: 1; }
    100% { transform: translateX(50%) scaleX(1); opacity: 0.75; }
}

@keyframes loader-exit {
    0%, 70% { opacity: 1; visibility: visible; }
    100% { opacity: 0; visibility: hidden; }
}

.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    height: 88px;
    margin-bottom: -88px;
    background: rgba(36, 11, 11, 0.95);
    border-bottom: 1px solid rgba(180, 71, 79, 0.72);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.site-nav {
    display: grid;
    grid-template-columns: 78px 1fr auto;
    align-items: center;
    min-height: 88px;
    gap: 24px;
}

.brand {
    justify-self: start;
    width: 58px;
    height: 66px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid rgba(201, 170, 106, 0.75);
    border-radius: 8px;
    box-shadow: 0 7px 24px rgba(0, 0, 0, 0.18);
}

.brand img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(10px, 1.25vw, 24px);
    margin: 0;
    padding: 0;
    list-style: none;
}

.desktop-nav a {
    position: relative;
    display: block;
    padding: 8px 0;
    color: var(--white);
    font-size: clamp(12px, 1vw, 15px);
    font-weight: 700;
    white-space: nowrap;
}

.desktop-nav a::after {
    position: absolute;
    inset-inline: 0;
    inset-block-end: 2px;
    height: 1px;
    content: "";
    background: var(--gold-400);
    transform: scaleX(0);
    transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
    transform: scaleX(1);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 8px 24px;
    border: 1px solid var(--gold-400);
    border-radius: 7px;
    font-weight: 700;
    line-height: 1.4;
    transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

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

.button-nav {
    justify-self: end;
    background: rgba(255, 255, 255, 0.96);
    color: var(--burgundy-900);
}

.button-nav:hover {
    background: var(--gold-200);
}

.mobile-menu {
    display: none;
}

.hero {
    position: relative;
    display: grid;
    min-height: 100vh;
    min-height: 100svh;
    overflow: hidden;
    background: var(--brown-900);
    isolation: isolate;
}

.hero-fallback,
.hero-video,
.hero-shade {
    position: absolute;
    z-index: -3;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-fallback img,
.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.hero-video {
    z-index: -2;
}

.hero-shade {
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(24, 8, 7, 0.36) 0%, rgba(24, 8, 7, 0.62) 54%, rgba(24, 8, 7, 0.88) 100%),
        linear-gradient(180deg, rgba(20, 8, 7, 0.25) 0%, rgba(20, 8, 7, 0.04) 55%, rgba(20, 8, 7, 0.55) 100%);
}

.hero-content {
    display: flex;
    align-items: center;
    min-height: 100vh;
    min-height: 100svh;
    padding-block: 148px 70px;
}

.hero-copy {
    max-width: 780px;
    padding: clamp(22px, 3vw, 38px);
    color: var(--white);
    background: linear-gradient(135deg, rgba(28, 8, 7, 0.8), rgba(28, 8, 7, 0.42));
    border: 1px solid rgba(230, 211, 170, 0.3);
    border-inline-start: 3px solid var(--gold-400);
    border-radius: 10px;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
    text-shadow: 0 3px 24px rgba(0, 0, 0, 0.45);
}

.hero-copy::before {
    display: block;
    width: 76px;
    height: 2px;
    margin-bottom: 24px;
    content: "";
    background: var(--gold-400);
}

.hero h1 {
    max-width: 760px;
    margin-bottom: 12px;
    font-size: clamp(38px, 4.7vw, 72px);
    font-weight: 700;
    letter-spacing: -0.04em;
    text-wrap: balance;
}

.hero-practice {
    margin-bottom: 8px;
    color: var(--ivory-100);
    font-size: clamp(22px, 2.25vw, 34px);
    font-weight: 700;
}

.hero-license {
    margin-bottom: 32px;
    color: var(--gold-200);
    font-size: clamp(16px, 1.3vw, 20px);
}

.hero-license span {
    font-variant-numeric: tabular-nums;
}

.button-primary {
    min-width: 168px;
    background: var(--gold-400);
    color: var(--white);
    text-shadow: none;
}

.button-primary:hover {
    background: var(--gold-500);
}

.section {
    padding-block: clamp(76px, 8vw, 122px);
}

.section-heading {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.section-heading > span {
    width: 44px;
    height: 2px;
    flex: 0 0 auto;
    background: var(--gold-500);
}

.section-heading h2 {
    margin: 0;
    color: var(--burgundy-800);
    font-size: clamp(30px, 3vw, 48px);
    letter-spacing: -0.035em;
}

.section-heading-light h2 {
    color: var(--white);
}

.section-lead {
    max-width: 960px;
    margin-bottom: 44px;
    color: var(--grey-700);
    font-size: clamp(17px, 1.4vw, 21px);
}

.section-lead.narrow {
    max-width: 860px;
}

.philosophy {
    background: var(--white);
}

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

.philosophy-grid article {
    position: relative;
    min-height: 240px;
    padding: clamp(28px, 3vw, 46px);
    overflow: hidden;
    background: var(--white);
    border: 1px solid rgba(181, 150, 89, 0.44);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.philosophy-grid article::after {
    position: absolute;
    inset-block: 0;
    inset-inline-end: 0;
    width: 4px;
    content: "";
    background: var(--burgundy-800);
}

.philosophy-grid h3 {
    margin-bottom: 16px;
    color: var(--burgundy-800);
    font-size: 25px;
}

.philosophy-grid p {
    margin: 0;
    color: var(--grey-700);
}

.why-us {
    background: var(--ivory-100);
    color: var(--grey-900);
}

.why-us .section-heading-light h2 {
    color: var(--burgundy-800);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 42px;
}

.why-card {
    position: relative;
    min-height: 280px;
    padding: 38px 30px 32px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid rgba(181, 150, 89, 0.42);
    box-shadow: 0 10px 30px rgba(42, 20, 16, 0.055);
    border-radius: var(--radius);
}

.why-card::before {
    position: absolute;
    inset-inline: 30px;
    inset-block-start: 0;
    height: 2px;
    content: "";
    background: var(--gold-400);
}

.card-number {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    margin-bottom: 24px;
    background: var(--burgundy-700);
    color: var(--white);
    border: 2px solid var(--gold-400);
    border-radius: 50%;
    box-shadow: 0 6px 16px rgba(95, 24, 23, 0.18);
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
}

.why-card h3 {
    margin-bottom: 14px;
    color: var(--burgundy-800);
    font-size: 24px;
}

.why-card p {
    margin-bottom: 0;
    color: var(--grey-700);
}

.services {
    background: var(--ivory-100);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 14px;
}

.service-card {
    background: var(--white);
    border: 1px solid rgba(94, 92, 92, 0.17);
    border-radius: 8px;
    box-shadow: 0 9px 28px rgba(42, 20, 16, 0.055);
}

.service-card[open] {
    border-color: rgba(181, 150, 89, 0.68);
    box-shadow: 0 14px 32px rgba(42, 20, 16, 0.09);
}

.service-card summary {
    display: grid;
    grid-template-columns: 40px 1fr 24px;
    align-items: center;
    min-height: 76px;
    gap: 14px;
    padding: 15px 20px;
    color: var(--burgundy-900);
    cursor: pointer;
    font-weight: 700;
    list-style: none;
}

.service-card summary::-webkit-details-marker {
    display: none;
}

.service-number {
    color: var(--gold-500);
    font-size: 13px;
    font-variant-numeric: tabular-nums;
}

.service-card summary i {
    position: relative;
    width: 18px;
    height: 18px;
}

.service-card summary i::before,
.service-card summary i::after {
    position: absolute;
    inset-block-start: 8px;
    inset-inline-start: 1px;
    width: 16px;
    height: 2px;
    content: "";
    background: var(--gold-500);
    transition: transform 180ms ease;
}

.service-card summary i::after {
    transform: rotate(90deg);
}

.service-card[open] summary i::after {
    transform: rotate(0deg);
}

.service-card ol {
    margin: 0 72px 0 20px;
    padding: 0 0 26px 22px;
    color: var(--grey-700);
}

.service-card li {
    padding-inline-start: 5px;
}

.service-card li + li {
    margin-top: 7px;
}

.journey {
    background: var(--burgundy-950);
    color: var(--white);
}

.section-lead-light {
    color: rgba(255, 255, 255, 0.76);
}

.timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    margin: 58px 0 0;
    padding: 0;
    list-style: none;
}

.timeline::before {
    position: absolute;
    inset-block-start: 25px;
    inset-inline: 12.5%;
    height: 1px;
    content: "";
    background: rgba(201, 170, 106, 0.55);
}

.timeline li {
    position: relative;
    padding-inline: 18px;
    text-align: center;
}

.timeline-number {
    position: relative;
    z-index: 1;
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    margin: 0 auto 28px;
    background: var(--burgundy-900);
    color: var(--gold-200);
    border: 1px solid var(--gold-400);
    border-radius: 50%;
    font-size: 20px;
    font-weight: 700;
}

.timeline h3 {
    margin-bottom: 8px;
    color: var(--gold-200);
    font-size: 20px;
}

.timeline p {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
}

.accreditations {
    background: var(--white);
}

.accreditation-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 42px;
}

.accreditation-card {
    display: flex;
    min-height: 390px;
    flex-direction: column;
    padding: 30px;
    background: var(--ivory-50);
    border: 1px solid rgba(181, 150, 89, 0.45);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.accreditation-image {
    display: grid;
    height: 230px;
    place-items: center;
    margin-bottom: 24px;
}

.accreditation-image img {
    width: auto;
    max-width: 100%;
    max-height: 210px;
    object-fit: contain;
}

.accreditation-card h3 {
    margin: auto 0 0;
    color: var(--grey-700);
    font-size: 18px;
}

.partners {
    position: relative;
    overflow: hidden;
    background: var(--ivory-100);
    color: var(--grey-900);
}

.partners .section-heading-light h2 {
    color: var(--burgundy-800);
}

.partners::after {
    position: absolute;
    inset-block: 0;
    inset-inline-end: -12vw;
    width: 42vw;
    content: "";
    background: linear-gradient(135deg, transparent 8%, rgba(181, 150, 89, 0.1));
    transform: skewX(-12deg);
}

.partners-inner {
    position: relative;
    z-index: 1;
}

.partners p {
    max-width: 920px;
    margin: 34px 0 0;
    color: var(--grey-700);
    font-size: clamp(18px, 1.6vw, 23px);
    line-height: 2.1;
}

.contact {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 40px;
}

.contact-card {
    position: relative;
    padding: 28px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid rgba(181, 150, 89, 0.4);
    border-radius: var(--radius);
    box-shadow: 0 12px 32px rgba(42, 20, 16, 0.065);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.contact-card::before {
    position: absolute;
    inset-block-start: 0;
    inset-inline: 0;
    height: 4px;
    content: "";
    background: var(--burgundy-700);
}

.contact-card:hover {
    border-color: var(--gold-400);
    box-shadow: 0 16px 36px rgba(95, 24, 23, 0.14);
    transform: translateY(-3px);
}

.contact-card h3 {
    margin-bottom: 10px;
    color: var(--burgundy-800);
    font-size: 17px;
}

.contact-card h3::before {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-inline-end: 8px;
    content: "";
    background: var(--burgundy-700);
    border-radius: 50%;
    vertical-align: 2px;
}

.contact-card a,
.contact-card p {
    margin: 0;
    color: var(--grey-700);
    overflow-wrap: anywhere;
}

.contact-card a {
    display: inline-block;
    border-bottom: 1px solid transparent;
    font-size: 17px;
    font-weight: 700;
}

.contact-card a:hover {
    color: var(--burgundy-800);
    border-bottom-color: var(--gold-500);
}

.contact-address {
    grid-column: auto;
}

.site-footer {
    padding-block: 56px;
    background: var(--burgundy-950);
    color: rgba(255, 255, 255, 0.76);
    border-top: 1px solid rgba(201, 170, 106, 0.58);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    align-items: start;
    gap: 42px;
}

.footer-identity {
    display: flex;
    align-items: center;
    gap: 18px;
}

.footer-identity img {
    width: 74px;
    height: 86px;
    flex: 0 0 auto;
    object-fit: cover;
    background: var(--white);
    border: 1px solid rgba(201, 170, 106, 0.5);
    border-radius: 7px;
}

.footer-identity p {
    margin-bottom: 4px;
}

.footer-name {
    color: var(--white);
    font-weight: 700;
}

.footer-nav,
.footer-contact {
    display: grid;
    gap: 6px;
}

.footer-nav a,
.footer-contact a {
    width: fit-content;
}

.footer-nav a:hover,
.footer-contact a:hover {
    color: var(--gold-200);
}

.footer-contact {
    margin: 0;
    font-style: normal;
}

@media (max-width: 1100px) {
    .site-nav {
        grid-template-columns: 70px 1fr auto;
    }

    .desktop-nav,
    .button-nav {
        display: none;
    }

    .mobile-menu {
        position: relative;
        display: block;
        grid-column: 3;
        justify-self: end;
    }

    .mobile-menu summary {
        display: grid;
        width: 48px;
        height: 48px;
        place-items: center;
        color: var(--white);
        border: 1px solid rgba(201, 170, 106, 0.7);
        border-radius: 7px;
        cursor: pointer;
        list-style: none;
    }

    .mobile-menu summary::-webkit-details-marker {
        display: none;
    }

    .mobile-menu summary span,
    .mobile-menu summary span::before,
    .mobile-menu summary span::after {
        display: block;
        width: 22px;
        height: 2px;
        content: "";
        background: var(--gold-200);
    }

    .mobile-menu summary span {
        position: relative;
    }

    .mobile-menu summary span::before {
        position: absolute;
        inset-block-start: -7px;
    }

    .mobile-menu summary span::after {
        position: absolute;
        inset-block-start: 7px;
    }

    .mobile-menu[open] summary span {
        background: transparent;
    }

    .mobile-menu[open] summary span::before {
        inset-block-start: 0;
        transform: rotate(45deg);
    }

    .mobile-menu[open] summary span::after {
        inset-block-start: 0;
        transform: rotate(-45deg);
    }

    .mobile-menu-panel {
        position: absolute;
        inset-block-start: 58px;
        inset-inline-end: 0;
        display: grid;
        width: min(330px, calc(100vw - 48px));
        padding: 12px;
        background: rgba(36, 11, 11, 0.97);
        border: 1px solid rgba(201, 170, 106, 0.62);
        border-radius: 8px;
        box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
    }

    .mobile-menu-panel a {
        padding: 10px 12px;
        color: var(--white);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .mobile-menu-panel a:last-child {
        border-bottom: 0;
    }

    .mobile-menu-panel a:hover,
    .mobile-menu-panel a:focus-visible {
        color: var(--gold-200);
        background: rgba(255, 255, 255, 0.05);
    }

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

    .footer-contact {
        grid-column: 1 / -1;
    }
}

@media (max-width: 767px) {
    html {
        scroll-padding-top: 78px;
    }

    body {
        font-size: 15px;
        line-height: 1.85;
    }

    .container {
        width: min(calc(100% - 32px), var(--container));
    }

    .site-header {
        height: 74px;
        margin-bottom: -74px;
    }

    .site-nav {
        grid-template-columns: 60px 1fr auto;
        min-height: 74px;
        gap: 12px;
    }

    .brand {
        width: 50px;
        height: 58px;
    }

    .mobile-menu-panel {
        width: min(310px, calc(100vw - 32px));
    }

    .hero-fallback img,
    .hero-video {
        object-position: center center;
    }

    .hero-shade {
        background:
            linear-gradient(180deg, rgba(24, 8, 7, 0.36) 0%, rgba(24, 8, 7, 0.22) 42%, rgba(24, 8, 7, 0.88) 100%),
            linear-gradient(90deg, rgba(24, 8, 7, 0.28), rgba(24, 8, 7, 0.5));
    }

    .hero-content {
        align-items: start;
        padding-block: 148px 42px;
    }

    .hero-copy {
        max-width: 100%;
    }

    .hero-copy::before {
        width: 58px;
        margin-bottom: 17px;
    }

    .hero h1 {
        max-width: 340px;
        margin-bottom: 8px;
        font-size: clamp(32px, 9.5vw, 44px);
    }

    .hero-practice {
        font-size: clamp(19px, 5.5vw, 26px);
    }

    .hero-license {
        margin-bottom: 24px;
    }

    .section {
        padding-block: 70px;
    }

    .section-heading {
        gap: 10px;
        margin-bottom: 16px;
    }

    .section-heading > span {
        width: 30px;
    }

    .section-heading h2 {
        font-size: clamp(28px, 8vw, 38px);
    }

    .section-lead {
        margin-bottom: 32px;
        font-size: 16px;
    }

    .philosophy-grid,
    .why-grid,
    .services-grid,
    .accreditation-grid,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .philosophy-grid article {
        min-height: auto;
        padding: 28px 24px;
    }

    .why-grid {
        margin-top: 32px;
    }

    .why-card {
        min-height: auto;
        padding: 32px 24px 28px;
    }

    .card-number {
        width: 44px;
        height: 44px;
        margin-bottom: 20px;
        font-size: 20px;
    }

    .service-card summary {
        grid-template-columns: 32px 1fr 20px;
        min-height: 70px;
        gap: 10px;
        padding: 14px 15px;
        font-size: 14px;
    }

    .service-card ol {
        margin-inline: 50px 15px;
        padding-inline: 0 20px;
    }

    .timeline {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
        margin-top: 42px;
    }

    .timeline::before {
        inset-block: 26px 26px;
        inset-inline-start: 25px;
        width: 1px;
        height: auto;
    }

    .timeline li {
        display: grid;
        grid-template-columns: 52px 1fr;
        align-items: start;
        gap: 18px;
        padding: 0 0 34px;
        text-align: right;
    }

    .timeline li:last-child {
        padding-bottom: 0;
    }

    .timeline-number {
        margin: 0;
    }

    .timeline h3 {
        margin-bottom: 3px;
    }

    .accreditation-card {
        min-height: 350px;
        padding: 24px;
    }

    .accreditation-image {
        height: 220px;
    }

    .footer-contact {
        grid-column: auto;
    }

    .footer-grid {
        gap: 32px;
    }

    .footer-identity {
        align-items: flex-start;
    }
}

@media (max-width: 390px) {
    .container {
        width: min(calc(100% - 24px), var(--container));
    }

    .hero-content {
        padding-top: 132px;
    }

    .hero h1 {
        font-size: 31px;
    }

    .hero-practice {
        font-size: 19px;
    }

    .button {
        min-height: 44px;
        padding-inline: 20px;
    }

    .mobile-menu-panel {
        width: calc(100vw - 24px);
    }

    .service-card summary {
        grid-template-columns: 28px 1fr 18px;
        font-size: 13px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

    .loading-screen {
        display: none;
    }

    .hero-video {
        display: none;
    }
}
