:root {
    --bg: #f7f7f4;
    --surface: #fff;
    --ink: #1d1f1e;
    --muted: #666c68;
    --line: #e4e6e2;
    --orange: #ff5a36;
    --orange-soft: #fff0eb;
    --green: #22a86f;
    --green-soft: #e8f8f0;
    --yellow: #ffd95a;
    --radius-xl: 36px;
    --radius-lg: 28px;
    --radius-md: 20px;
    --shadow: 0 24px 70px rgba(30, 36, 32, .09);
    --gutter: clamp(20px, 5vw, 76px);
}

.page-progress {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    height: 2px;
    pointer-events: none;
    background: rgba(34, 168, 111, .08);
}

.page-progress span {
    width: 100%;
    height: 100%;
    display: block;
    transform: scaleX(0);
    transform-origin: left center;
    background: linear-gradient(90deg, var(--green), var(--orange));
    will-change: transform;
}

* {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--bg);
    color: var(--ink);
    font-family: Arial, "Pretendard", "Noto Sans KR", "Malgun Gothic", sans-serif;
    line-height: 1.5;
    word-break: keep-all;
}

body,
button,
a {
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
}

button {
    font: inherit;
}

img {
    max-width: 100%;
}

.skip-link {
    position: fixed;
    top: -100px;
    left: 16px;
    z-index: 1000;
    padding: 12px 16px;
    border-radius: 12px;
    background: #111;
    color: #fff;
}

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

.demo-bar {
    padding: 7px var(--gutter);
    background: #222522;
    color: #fff;
    text-align: center;
    font-size: 11px;
    font-weight: 700;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    border-bottom: 1px solid rgba(228, 230, 226, .85);
    background: rgba(247, 247, 244, .88);
    backdrop-filter: blur(18px);
}

.header-inner {
    max-width: 1440px;
    min-height: 78px;
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: flex;
    align-items: center;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 19px;
    font-weight: 900;
    letter-spacing: -.05em;
    text-decoration: none;
}

.brand-mark {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: var(--orange);
    color: #fff;
    font-size: 14px;
}

.main-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 28px;
}

.main-nav a {
    color: #4f5551;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.main-nav a:hover {
    color: var(--ink);
}

.header-cta {
    min-height: 44px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: var(--ink);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

.menu-toggle {
    display: none;
    margin-left: auto;
    border: 0;
    background: transparent;
    color: var(--ink);
    font-size: 13px;
    font-weight: 800;
}

main {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.hero {
    min-height: 760px;
    padding: clamp(46px, 7vw, 96px) 0 clamp(74px, 8vw, 118px);
    display: grid;
    grid-template-columns: minmax(0, .84fr) minmax(420px, 1.16fr);
    gap: clamp(46px, 7vw, 110px);
    align-items: center;
}

.hero > *,
.hero-copy,
.hero-visual {
    min-width: 0;
}

.eyebrow,
.section-kicker {
    margin: 0;
    color: var(--green);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .13em;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 9px;
}

.eyebrow span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 6px var(--green-soft);
}

.hero h1 {
    margin: 24px 0 0;
    font-size: clamp(48px, 6.2vw, 91px);
    line-height: 1.01;
    letter-spacing: -.073em;
}

.hero-lead {
    max-width: 560px;
    margin: 26px 0 0;
    color: var(--muted);
    font-size: clamp(16px, 1.7vw, 20px);
    line-height: 1.78;
}

.hero-actions {
    margin-top: 34px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.button {
    min-height: 54px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    border-radius: 17px;
    font-size: 14px;
    font-weight: 850;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease;
}

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

.button-primary {
    background: var(--orange);
    color: #fff;
    box-shadow: 0 13px 26px rgba(255, 90, 54, .22);
}

.button-ghost {
    border: 1px solid var(--line);
    background: var(--surface);
}

.status-card {
    max-width: 540px;
    margin-top: 38px;
    padding: 17px 18px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 13px;
    align-items: center;
    border: 1px solid #dce7df;
    border-radius: 19px;
    background: var(--green-soft);
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 6px rgba(34, 168, 111, .12);
}

.status-card.status-break .status-dot,
.status-card.status-soon .status-dot,
.status-card.status-before .status-dot {
    background: #e49b28;
    box-shadow: 0 0 0 6px rgba(228, 155, 40, .13);
}

.status-card.status-ended .status-dot,
.status-card.status-closed .status-dot {
    background: #8b938e;
    box-shadow: 0 0 0 6px rgba(139, 147, 142, .13);
}

.status-card strong {
    font-size: 13px;
}

.status-card p {
    margin: 3px 0 0;
    color: #577065;
    font-size: 11px;
}

.status-card > span:last-child {
    color: #577065;
    font-size: 11px;
    font-weight: 700;
}

.hero-visual {
    position: relative;
}

.hero-visual picture,
.hero-visual img {
    width: 100%;
    display: block;
}

.hero-visual picture {
    aspect-ratio: 1 / 1.05;
    overflow: hidden;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.hero-visual img {
    height: 100%;
    object-fit: cover;
}

.hero-visual::before {
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    right: -24px;
    top: -28px;
    border-radius: 50%;
    background: var(--yellow);
    z-index: -1;
}

.hero-float {
    position: absolute;
    right: -22px;
    bottom: 28px;
    width: min(290px, 52%);
    padding: 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 18px 50px rgba(34, 37, 34, .16);
    backdrop-filter: blur(12px);
}

.hero-float span {
    color: var(--orange);
    font-size: 10px;
    font-weight: 900;
}

.hero-float strong {
    display: block;
    margin-top: 6px;
    font-size: 18px;
}

.hero-float p {
    margin: 7px 0 0;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.6;
}

.section-heading h2,
.story-copy h2,
.space-copy h2,
.visit-copy h2 {
    margin: 14px 0 0;
    font-size: clamp(36px, 4.6vw, 65px);
    line-height: 1.06;
    letter-spacing: -.062em;
}

.section-heading.compact {
    margin-bottom: 32px;
}

.section-heading.split {
    display: grid;
    grid-template-columns: 1fr minmax(280px, .42fr);
    gap: 40px;
    align-items: end;
}

.section-heading.split > p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
}

.quick-section,
.menu-section,
.faq-section {
    padding: clamp(74px, 9vw, 128px) 0;
}

.moment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.moment-card {
    min-height: 210px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--surface);
    text-decoration: none;
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.moment-card:hover {
    transform: translateY(-4px);
    border-color: #cfd4cf;
    box-shadow: 0 18px 44px rgba(35, 40, 36, .07);
}

.moment-card > span {
    color: #959b97;
    font-size: 11px;
    font-weight: 800;
}

.moment-card strong {
    margin-top: auto;
    font-size: 21px;
}

.moment-card p {
    margin: 7px 0 0;
    color: var(--muted);
    font-size: 13px;
}

.moment-card i {
    margin-top: 18px;
    color: var(--orange);
    font-style: normal;
}

.menu-section {
    border-top: 1px solid var(--line);
}

.menu-filter {
    margin-top: 38px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.menu-filter button {
    min-height: 44px;
    padding: 0 17px;
    border: 1px solid var(--line);
    border-radius: 99px;
    background: var(--surface);
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
}

.menu-filter button.is-active {
    border-color: var(--ink);
    background: var(--ink);
    color: #fff;
}

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

.menu-card {
    min-height: 190px;
    padding: 24px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: end;
    border-radius: var(--radius-lg);
    background: var(--surface);
    box-shadow: inset 0 0 0 1px var(--line);
}

.menu-card.has-media {
    padding: 0;
    grid-template-columns: minmax(145px, .72fr) minmax(0, 1.28fr);
    gap: 0;
    align-items: stretch;
    overflow: hidden;
}

.menu-card[hidden] {
    display: none;
}

.menu-media {
    width: calc(100% - 18px);
    aspect-ratio: 4 / 3;
    margin: 18px 0 18px 18px;
    align-self: center;
    overflow: hidden;
    border-radius: 18px;
    background: #eef0ed;
}

.menu-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.menu-card-body {
    min-width: 0;
    padding: 22px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 20px;
    align-items: end;
}

.menu-card-body .menu-badge {
    grid-column: 1 / -1;
}

.menu-badge {
    grid-column: 1 / -1;
    align-self: start;
    justify-self: start;
    padding: 7px 10px;
    border-radius: 99px;
    background: var(--orange-soft);
    color: var(--orange);
    font-size: 10px;
    font-weight: 900;
}

.menu-card h3 {
    margin: 0;
    font-size: 20px;
    letter-spacing: -.035em;
}

.menu-card p {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.65;
}

.menu-card > strong {
    white-space: nowrap;
    font-size: 16px;
}

.menu-card-body > strong {
    white-space: nowrap;
    font-size: 16px;
}

.sample-note {
    margin: 18px 0 0;
    color: #888d89;
    font-size: 11px;
}

.story-section {
    margin: clamp(70px, 9vw, 130px) 0;
    padding: clamp(24px, 4vw, 56px);
    display: grid;
    grid-template-columns: minmax(300px, .8fr) minmax(0, 1.2fr);
    gap: clamp(46px, 7vw, 110px);
    align-items: center;
    border-radius: var(--radius-xl);
    background: #202521;
    color: #fff;
}

.story-image {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 28px;
}

.story-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.story-copy .section-kicker {
    color: #65d49f;
}

.principle-list {
    margin-top: 40px;
}

.principle-list article {
    padding: 22px 0;
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 16px;
    border-top: 1px solid rgba(255, 255, 255, .14);
}

.principle-list article > span {
    color: #65d49f;
    font-size: 11px;
    font-weight: 900;
}

.principle-list h3 {
    margin: 0;
    font-size: 18px;
}

.principle-list p {
    margin: 7px 0 0;
    color: #b8c0ba;
    font-size: 13px;
    line-height: 1.7;
}

.space-section {
    margin: clamp(80px, 10vw, 150px) 0;
    display: grid;
    grid-template-columns: minmax(280px, .55fr) minmax(0, 1.45fr);
    gap: 18px;
}

.space-copy {
    padding: clamp(30px, 5vw, 60px);
    display: flex;
    flex-direction: column;
    border-radius: var(--radius-xl);
    background: var(--orange-soft);
}

.space-label {
    color: var(--orange);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .13em;
}

.space-copy h2 {
    font-size: clamp(34px, 4vw, 54px);
}

.space-copy p {
    margin: 24px 0 0;
    color: #705c55;
    font-size: 14px;
    line-height: 1.8;
}

.space-copy a {
    margin-top: auto;
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
}

.space-section picture {
    min-height: 500px;
    overflow: hidden;
    border-radius: var(--radius-xl);
}

.space-section img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.faq-section {
    border-top: 1px solid var(--line);
}

.faq-list {
    margin-top: 45px;
    border-top: 1px solid var(--ink);
}

.faq-list details {
    border-bottom: 1px solid var(--line);
}

.faq-list summary {
    min-height: 78px;
    display: grid;
    grid-template-columns: 48px 1fr auto;
    gap: 18px;
    align-items: center;
    list-style: none;
    font-size: 17px;
    font-weight: 800;
    cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary span {
    color: var(--orange);
    font-size: 11px;
}

.faq-list summary i {
    font-style: normal;
    font-size: 22px;
    transition: transform .2s ease;
}

.faq-list details[open] summary i {
    transform: rotate(45deg);
}

.faq-list details > p {
    max-width: 820px;
    margin: -4px 0 27px 66px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
}

.visit-section {
    margin: clamp(78px, 10vw, 140px) 0 80px;
    padding: clamp(32px, 6vw, 72px);
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
    gap: clamp(50px, 8vw, 120px);
    border-radius: var(--radius-xl);
    background: #fff;
    box-shadow: 0 28px 80px rgba(35, 40, 36, .07);
}

.visit-copy dl {
    margin: 38px 0 0;
}

.visit-copy dl > div {
    padding: 15px 0;
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 20px;
    border-top: 1px solid var(--line);
}

.visit-copy dt {
    color: #888e8a;
    font-size: 12px;
    font-weight: 800;
}

.visit-copy dd {
    margin: 0;
    font-size: 13px;
    line-height: 1.7;
}

.visit-status {
    color: var(--green);
    font-size: 13px;
}

.visit-status.status-text-break,
.visit-status.status-text-soon,
.visit-status.status-text-before {
    color: #b97513;
}

.visit-status.status-text-ended,
.visit-status.status-text-closed {
    color: #69716c;
}

.contact-card {
    position: relative;
    padding: clamp(28px, 4vw, 44px);
    overflow: hidden;
    border-radius: 30px;
    background: var(--green-soft);
}

.contact-orbit {
    position: absolute;
    width: 180px;
    height: 180px;
    right: -68px;
    top: -75px;
    border: 34px solid rgba(34, 168, 111, .12);
    border-radius: 50%;
}

.contact-card > p:first-of-type {
    position: relative;
    margin: 0;
    color: #557065;
    font-size: 12px;
    font-weight: 800;
}

.contact-card h3 {
    position: relative;
    margin: 14px 0 28px;
    font-size: clamp(27px, 3.2vw, 40px);
    line-height: 1.12;
    letter-spacing: -.05em;
}

.contact-buttons {
    position: relative;
    display: grid;
    gap: 8px;
}

.contact-button {
    min-height: 58px;
    padding: 0 16px;
    display: grid;
    grid-template-columns: 36px 1fr auto;
    gap: 12px;
    align-items: center;
    border-radius: 16px;
    background: #fff;
    font-size: 13px;
    font-weight: 850;
    text-decoration: none;
}

.contact-button > span {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    font-size: 11px;
    font-weight: 950;
}

.contact-button.kakao > span {
    background: #fee500;
    color: #231f20;
}

.contact-button.place > span {
    background: #03c75a;
    color: #fff;
}

.contact-button.call > span {
    background: #ebeff0;
    color: #333;
}

.contact-button i {
    color: #7b817d;
    font-style: normal;
}

.demo-action-note {
    position: relative;
    margin: 18px 0 0 !important;
    color: #6d7d74 !important;
    font-size: 10px !important;
    line-height: 1.6;
}

.demo-action-note code {
    font-family: Consolas, monospace;
}

footer {
    max-width: 1440px;
    margin: 0 auto;
    padding: 30px var(--gutter) 46px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    border-top: 1px solid var(--line);
    font-size: 11px;
}

.footer-brand {
    margin-bottom: 12px;
}

footer p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

footer > p {
    text-align: right;
}

footer span {
    color: #a0a5a1;
}

.mobile-actions,
.toast {
    display: none;
}

:focus-visible {
    outline: 3px solid #2e6bff;
    outline-offset: 4px;
}

@media (max-width: 980px) {
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

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

    .hero-visual {
        max-width: 760px;
    }

    .story-section,
    .space-section,
    .visit-section {
        grid-template-columns: 1fr;
    }

    .story-image {
        max-height: 620px;
    }

    .space-copy {
        min-height: 390px;
    }

    .space-section picture {
        min-height: 430px;
    }
}

@media (max-width: 760px) {
    body {
        padding-bottom: calc(74px + env(safe-area-inset-bottom));
    }

    .header-inner {
        min-height: 68px;
    }

    .menu-toggle {
        display: inline-flex;
        min-height: 44px;
        align-items: center;
    }

    .main-nav {
        position: absolute;
        left: var(--gutter);
        right: var(--gutter);
        top: calc(100% + 8px);
        padding: 12px;
        display: none;
        border: 1px solid var(--line);
        border-radius: 18px;
        background: #fff;
        box-shadow: var(--shadow);
    }

    .main-nav.is-open {
        display: grid;
    }

    .main-nav a {
        padding: 12px;
    }

    .header-cta {
        display: none;
    }

    .hero {
        padding-top: 52px;
        gap: 54px;
    }

    .hero-visual::before,
    .contact-orbit {
        right: -20px;
    }

    .hero h1 {
        font-size: clamp(45px, 13.7vw, 68px);
    }

    .hero-actions {
        display: grid;
    }

    .status-card {
        grid-template-columns: auto 1fr;
    }

    .status-card > span:last-child {
        grid-column: 2;
    }

    .hero-visual picture {
        aspect-ratio: 4 / 5;
    }

    .hero-float {
        right: 14px;
        bottom: 14px;
        width: calc(100% - 28px);
    }

    .section-heading.split {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .moment-grid,
    .menu-grid {
        grid-template-columns: 1fr;
    }

    .moment-card {
        min-height: 178px;
    }

    .menu-filter {
        margin-right: calc(0px - var(--gutter));
        padding-right: var(--gutter);
        flex-wrap: nowrap;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .menu-filter::-webkit-scrollbar {
        display: none;
    }

    .menu-filter button {
        flex: 0 0 auto;
    }

    .story-section {
        padding: 18px;
        border-radius: 30px;
    }

    .story-copy {
        padding: 18px 8px 22px;
    }

    .space-copy {
        min-height: 360px;
    }

    .visit-section {
        padding: 22px;
        border-radius: 30px;
    }

    footer {
        display: block;
    }

    footer > p {
        margin-top: 20px;
        text-align: left;
    }

    .mobile-actions {
        position: fixed;
        left: 10px;
        right: 10px;
        bottom: calc(8px + env(safe-area-inset-bottom));
        z-index: 80;
        padding: 7px;
        display: grid;
        grid-template-columns: .7fr 1fr 1.35fr;
        gap: 6px;
        border: 1px solid rgba(225, 228, 224, .9);
        border-radius: 20px;
        background: rgba(255, 255, 255, .94);
        box-shadow: 0 16px 48px rgba(32, 38, 33, .18);
        backdrop-filter: blur(14px);
    }

    .mobile-actions a {
        min-height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 14px;
        background: #eff1ef;
        font-size: 12px;
        font-weight: 850;
        text-decoration: none;
    }

    .mobile-actions a.is-primary {
        background: var(--orange);
        color: #fff;
    }

    .toast {
        position: fixed;
        left: 50%;
        bottom: calc(86px + env(safe-area-inset-bottom));
        z-index: 100;
        width: min(90vw, 390px);
        padding: 13px 16px;
        transform: translate(-50%, 16px);
        border-radius: 14px;
        background: rgba(29, 31, 30, .94);
        color: #fff;
        text-align: center;
        font-size: 11px;
        opacity: 0;
        pointer-events: none;
        transition: opacity .2s ease, transform .2s ease;
    }

    .toast.is-visible {
        display: block;
        transform: translate(-50%, 0);
        opacity: 1;
    }
}

@media (min-width: 761px) {
    .toast {
        position: fixed;
        left: 50%;
        bottom: 28px;
        z-index: 100;
        width: min(90vw, 430px);
        padding: 14px 18px;
        transform: translate(-50%, 16px);
        border-radius: 15px;
        background: rgba(29, 31, 30, .94);
        color: #fff;
        text-align: center;
        font-size: 12px;
        opacity: 0;
        pointer-events: none;
        transition: opacity .2s ease, transform .2s ease;
    }

    .toast.is-visible {
        display: block;
        transform: translate(-50%, 0);
        opacity: 1;
    }
}

@media (max-width: 430px) {
    .demo-bar {
        font-size: 9px;
    }

    .hero h1 {
        font-size: clamp(42px, 13.2vw, 55px);
    }

    .section-heading h2,
    .story-copy h2,
    .space-copy h2,
    .visit-copy h2 {
        font-size: 35px;
    }

    .menu-card {
        grid-template-columns: 1fr;
    }

    .menu-card.has-media {
        grid-template-columns: 1fr;
    }

    .menu-media {
        width: 100%;
        aspect-ratio: 16 / 9;
        margin: 0;
        border-radius: 0;
    }

    .menu-card-body {
        padding: 22px;
    }

    .menu-card > strong {
        justify-self: start;
    }

    .menu-card-body > strong {
        justify-self: start;
    }

    .faq-list summary {
        grid-template-columns: 34px 1fr auto;
        font-size: 15px;
    }

    .faq-list details > p {
        margin-left: 52px;
    }

    .visit-copy dl > div {
        grid-template-columns: 1fr;
        gap: 5px;
    }
}

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

    *,
    *::before,
    *::after {
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
    }
}
