﻿:root {
    --bg: #08111f;
    --bg-alt: #0d1828;
    --surface: rgba(14, 24, 40, 0.76);
    --surface-strong: rgba(11, 20, 34, 0.96);
    --line: rgba(255, 255, 255, 0.09);
    --line-strong: rgba(212, 167, 92, 0.28);
    --text: #f3efe7;
    --muted: #a6b6ca;
    --gold: #d4a75c;
    --gold-soft: #f0d5a5;
    --accent: #b06b45;
    --kakao: #fee500;
    --kakao-shadow: rgba(254, 229, 0, 0.16);
    --shadow: 0 30px 80px rgba(2, 8, 18, 0.45);
    --radius-xl: 30px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --shell: 1180px;
    --header-height: 90px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Noto Sans KR", sans-serif;
    font-size: 16px;
    letter-spacing: -0.012em;
    line-height: 1.82;
    text-rendering: optimizeLegibility;
    word-break: keep-all;
    background:
        radial-gradient(circle at top left, rgba(212, 167, 92, 0.12), transparent 28%),
        radial-gradient(circle at 85% 15%, rgba(176, 107, 69, 0.14), transparent 24%),
        linear-gradient(180deg, #08111f 0%, #091625 42%, #0b1320 100%);
    color: var(--text);
    min-width: 320px;
}

body.menu-open {
    overflow: hidden;
}

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

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

button,
input,
textarea,
select {
    font: inherit;
}

p,
li,
dd,
summary,
.button,
.site-nav > a,
.text-link {
    letter-spacing: -0.014em;
}

.site-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 70%);
    opacity: 0.2;
}

.shell {
    width: min(calc(100% - 44px), var(--shell));
    margin: 0 auto;
}

.section {
    position: relative;
    padding: 110px 0;
}

.section--compact {
    padding: 22px 0 34px;
}

.section--dense {
    padding: 78px 0;
}

.eyebrow {
    margin: 0 0 20px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--gold-soft);
}

h1,
h2,
h3 {
    margin: 0;
    font-family: "Noto Serif KR", serif;
    font-weight: 600;
    line-height: 1.24;
    letter-spacing: -0.03em;
}

h1 {
    font-size: clamp(3rem, 6.2vw, 5.3rem);
    line-height: 1.16;
}

h2 {
    font-size: clamp(2.15rem, 4vw, 3.7rem);
}

h3 {
    font-size: clamp(1.48rem, 1.9vw, 1.95rem);
    line-height: 1.34;
}

p {
    margin: 0;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(18px);
    background: rgba(8, 17, 31, 0.76);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
}

.brand__mark {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    border: 1px solid var(--line-strong);
    color: var(--gold-soft);
    background: linear-gradient(135deg, rgba(212, 167, 92, 0.24), rgba(212, 167, 92, 0.08));
    font-family: "Noto Serif KR", serif;
    font-size: 1.45rem;
    font-weight: 700;
}

.brand__text {
    display: grid;
    gap: 4px;
}

.brand__text strong {
    font-size: 1.02rem;
    font-weight: 700;
    letter-spacing: -0.025em;
}

.brand__text small {
    color: var(--muted);
    font-size: 0.74rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.site-nav > a {
    color: var(--muted);
    font-size: 0.96rem;
    font-weight: 500;
    transition: color 180ms ease, transform 180ms ease;
}

.site-nav > a:hover,
.site-nav > a:focus-visible {
    color: var(--text);
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    width: 52px;
    height: 52px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    padding: 0;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 999px;
    margin: 3px auto;
    transition: transform 180ms ease, opacity 180ms ease;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 0.96rem;
    font-weight: 700;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

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

.button--primary {
    color: #14100a;
    background: linear-gradient(135deg, #d7b470, #f0d5a5);
    box-shadow: 0 18px 34px rgba(212, 167, 92, 0.18);
}

.button--ghost {
    color: var(--text);
    background: rgba(255, 255, 255, 0.03);
    border-color: var(--line);
}

.button--kakao {
    color: #191919;
    background: var(--kakao);
    border-color: rgba(254, 229, 0, 0.82);
    box-shadow: 0 18px 34px var(--kakao-shadow);
}

.button--nav {
    min-height: 46px;
    padding-inline: 18px;
}

.hero {
    padding-top: 92px;
}

.hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    gap: 52px;
    align-items: center;
}

.hero__copy {
    display: grid;
    gap: 28px;
}

.hero__copy h1 {
    max-width: 10.5ch;
}

.hero__lead {
    max-width: 56ch;
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.95;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero__metrics {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.48fr) minmax(0, 1.05fr);
    gap: 14px;
}

.metric {
    min-width: 0;
    padding: 22px 20px;
    border-radius: var(--radius-md);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.03);
}

.metric strong {
    display: block;
    color: var(--gold-soft);
    font-size: 0.92rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.metric span {
    display: block;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.68;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.metric--email {
    padding-inline: 16px;
}

.metric--email span {
    font-size: clamp(0.74rem, 0.64rem + 0.16vw, 0.82rem);
    letter-spacing: -0.04em;
    line-height: 1.3;
    white-space: nowrap;
    overflow-wrap: normal;
    word-break: normal;
}

.hero__visual {
    position: relative;
    display: grid;
    gap: 18px;
}

.hero__visual::before,
.hero__visual::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(10px);
    z-index: -1;
}

.hero__visual::before {
    width: 190px;
    height: 190px;
    top: -36px;
    right: 24px;
    background: radial-gradient(circle, rgba(212, 167, 92, 0.26), transparent 70%);
    animation: floatPulse 7s ease-in-out infinite;
}

.hero__visual::after {
    width: 240px;
    height: 240px;
    left: -30px;
    bottom: -34px;
    background: radial-gradient(circle, rgba(176, 107, 69, 0.22), transparent 72%);
    animation: floatPulse 8s ease-in-out infinite reverse;
}

.hero-card {
    padding: 34px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--line);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
        var(--surface);
    box-shadow: var(--shadow);
}

.hero-card--primary {
    min-height: 290px;
}

.hero-card--accent {
    border-color: rgba(212, 167, 92, 0.22);
    background:
        linear-gradient(180deg, rgba(212, 167, 92, 0.08), rgba(255, 255, 255, 0.02)),
        rgba(20, 29, 45, 0.85);
}

.hero-card__label,
.channel-card__label,
.schedule-card span {
    margin-bottom: 14px;
    color: var(--gold-soft);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.hero-card h2 {
    font-size: clamp(1.88rem, 3vw, 3rem);
    margin-bottom: 18px;
    line-height: 1.32;
}

.hero-card p + p {
    margin-top: 14px;
}

.hero-card p {
    color: var(--muted);
    line-height: 1.9;
}

.hero__stack {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 18px;
}

.chip-list,
.signal-list,
.representative-facts {
    list-style: none;
    margin: 0;
    padding: 0;
}

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

.chip-list li {
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    font-size: 0.94rem;
    line-height: 1.5;
}

.signal-list {
    display: grid;
    gap: 14px;
}

.signal-list li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: center;
    color: var(--muted);
    line-height: 1.72;
}

.signal-list span,
.service-card__index,
.process-card span {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: rgba(212, 167, 92, 0.12);
    color: var(--gold-soft);
    font-size: 0.88rem;
    font-weight: 700;
}

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

.trust-band__grid p {
    padding: 16px 18px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.03);
    color: var(--muted);
    text-align: center;
    font-size: 0.95rem;
    line-height: 1.58;
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
    gap: 44px;
    align-items: start;
}

.section-copy {
    display: grid;
    gap: 20px;
}

.section-copy__lead {
    color: var(--text);
    font-size: 1.08rem;
    line-height: 1.92;
}

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

.section-heading p:last-child,
.section-copy p:last-child,
.feature-panel p,
.service-card p,
.faq-list p,
.contact-card p,
.info-list dd,
.channel-card p,
.schedule-card p,
.representative-summary {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.86;
}

.feature-panel {
    display: grid;
    gap: 16px;
}

.feature-panel article,
.service-card,
.contact-card,
.channel-card,
.schedule-card,
.representative-card {
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
        var(--surface);
    box-shadow: var(--shadow);
}

.feature-panel article {
    padding: 30px;
}

.feature-panel h3 {
    margin-bottom: 10px;
}

.representative-grid {
    display: grid;
    grid-template-columns: minmax(320px, 430px) minmax(0, 1fr);
    gap: 28px;
    align-items: center;
}

.portrait-frame {
    padding: 18px;
    border-radius: calc(var(--radius-xl) + 4px);
    border: 1px solid var(--line-strong);
    background:
        radial-gradient(circle at top right, rgba(212, 167, 92, 0.08), transparent 32%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
        rgba(13, 24, 40, 0.82);
    box-shadow: var(--shadow);
}

.portrait-frame img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 24px;
}

.representative-card {
    padding: 34px;
}

.representative-role {
    margin-top: 14px;
    color: var(--gold-soft);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.representative-summary {
    margin-top: 18px;
}

.representative-history {
    margin-top: 24px;
    padding: 22px 24px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.representative-history__title {
    margin: 0 0 12px;
    color: var(--gold-soft);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.representative-history__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.representative-history__list li {
    position: relative;
    padding-left: 18px;
    color: var(--muted);
    line-height: 1.72;
}

.representative-history__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.82em;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--gold-soft);
    transform: translateY(-50%);
}


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

.representative-facts li {
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    line-height: 1.62;
}

.representative-contacts {
    margin-top: 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.representative-contacts a,
.representative-contacts span {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: var(--muted);
}

.service-grid,
.channel-grid,
.schedule-grid {
    display: grid;
    gap: 20px;
}

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

.service-card {
    padding: 30px;
    display: grid;
    gap: 14px;
    min-height: 224px;
}

.service-card__index {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    border: 1px solid rgba(212, 167, 92, 0.18);
    letter-spacing: 0.08em;
}

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

.schedule-card {
    padding: 24px;
}

.schedule-card span {
    display: block;
}

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

.channel-card {
    padding: 28px;
    display: grid;
    gap: 14px;
    align-content: start;
}

.channel-card__head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 4px;
}

.channel-card__head .channel-card__label {
    margin-bottom: 0;
}

.channel-card__logo {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
}

.channel-card--kakao .channel-card__logo {
    box-shadow: 0 16px 30px rgba(254, 229, 0, 0.14);
}

.channel-card--instagram .channel-card__logo {
    box-shadow: 0 16px 30px rgba(255, 87, 104, 0.16);
}

.channel-card--naver .channel-card__logo {
    box-shadow: 0 16px 30px rgba(3, 199, 90, 0.16);
}

.faq-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 28px;
    align-items: start;
}

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

.faq-list details {
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
        var(--surface);
    overflow: hidden;
}

.faq-list summary {
    list-style: none;
    cursor: pointer;
    padding: 24px 54px 24px 24px;
    position: relative;
    font-size: 1.02rem;
    font-weight: 700;
    line-height: 1.68;
}

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

.faq-list summary::after {
    content: "+";
    position: absolute;
    top: 22px;
    right: 24px;
    color: var(--gold-soft);
    font-size: 1.4rem;
    transition: transform 180ms ease;
}

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

.faq-list details p {
    padding: 0 24px 24px;
}

.contact-section {
    padding-top: 90px;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 22px;
}

.contact-card {
    padding: 34px;
}

.contact-card--primary {
    border-color: var(--line-strong);
    background:
        radial-gradient(circle at top right, rgba(212, 167, 92, 0.12), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
        var(--surface-strong);
}

.contact-actions {
    margin-top: 26px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.info-list {
    margin: 0;
    display: grid;
    gap: 18px;
}

.info-list div {
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.info-list div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.info-list dt {
    margin-bottom: 8px;
    color: var(--gold-soft);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.info-list dd {
    margin: 0;
}

.link-row {
    margin-top: 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
}

.text-link {
    display: inline-flex;
    color: var(--gold-soft);
    font-weight: 700;
}

.site-footer {
    padding: 34px 0 90px;
}

.site-footer__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    justify-content: space-between;
    color: var(--muted);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 26px;
    font-size: 0.94rem;
    line-height: 1.7;
}

.mobile-call {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 18;
    display: none;
    min-height: 52px;
    padding: 0 20px;
    border-radius: 999px;
    color: #14100a;
    background: linear-gradient(135deg, #d7b470, #f0d5a5);
    font-weight: 800;
    box-shadow: 0 14px 28px rgba(212, 167, 92, 0.22);
}

[data-reveal] {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 600ms ease, transform 600ms ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes floatPulse {
    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(0, -8px, 0) scale(1.04);
    }
}

@media (max-width: 1500px) {
    .hero__metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero__metrics .metric:nth-child(1) {
        grid-column: 1;
        grid-row: 1;
    }

    .hero__metrics .metric:nth-child(3) {
        grid-column: 2;
        grid-row: 1;
    }

    .hero__metrics .metric--email {
        grid-column: 1 / -1;
        grid-row: 2;
    }
}

@media (max-width: 1100px) {
    .hero__grid,
    .contact-grid,
    .split,
    .faq-layout,
    .representative-grid {
        grid-template-columns: 1fr;
    }

    .hero__stack,
    .service-grid,
    .channel-grid,
    .schedule-grid,
    .representative-facts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 820px) {
    :root {
        --header-height: 78px;
    }

    .section {
        padding: 92px 0;
    }

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

    .menu-toggle {
        display: inline-flex;
        position: relative;
        z-index: 22;
    }

    .site-nav {
        position: fixed;
        inset: var(--header-height) 14px auto 14px;
        display: grid;
        gap: 10px;
        padding: 20px;
        border-radius: 24px;
        border: 1px solid var(--line);
        background: rgba(8, 17, 31, 0.96);
        box-shadow: var(--shadow);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
    }

    body.menu-open .site-nav {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    body.menu-open .menu-toggle span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    body.menu-open .menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    body.menu-open .menu-toggle span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .site-nav > a {
        padding: 10px 8px;
    }

    .button--nav {
        width: 100%;
    }

    .hero {
        padding-top: 58px;
    }

    .hero-card,
    .contact-card,
    .service-card,
    .feature-panel article,
    .channel-card,
    .schedule-card,
    .representative-card,
    .portrait-frame {
        padding: 24px;
    }

    .mobile-call {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 640px) {
    h1 {
        font-size: clamp(2.65rem, 15vw, 4rem);
    }

    h2 {
        font-size: clamp(1.95rem, 9vw, 2.8rem);
    }

    .hero__metrics,
    .hero__stack,
    .service-grid,
    .schedule-grid,
    .channel-grid,
    .trust-band__grid,
    .representative-facts {
        grid-template-columns: 1fr;
    }

    .hero__metrics .metric {
        grid-column: auto;
        grid-row: auto;
    }

    .hero__actions,
    .contact-actions,
    .site-footer__inner,
    .representative-contacts,
    .link-row {
        flex-direction: column;
        align-items: stretch;
    }

    .button,
    .text-link,
    .representative-contacts a,
    .representative-contacts span {
        width: 100%;
    }

    .site-footer__inner {
        gap: 8px;
    }
}

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

    *,
    *::before,
    *::after {
        animation: none !important;
        transition-duration: 0.01ms !important;
        transition-delay: 0ms !important;
        scroll-behavior: auto !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}
