/* =================================================================
   БЕРЕГА — авторский сайт
   Палитра: Балтийский берег — дюны, песок, море, небо
   ================================================================= */

:root {
    /* Песок и дюны */
    --sand-light: #f4ece0;
    --sand: #e8dcc4;
    --sand-deep: #d4c19a;
    --dune: #b89b6e;

    /* Море */
    --sea-mist: #c8d4d2;
    --sea: #5b7e7c;
    --sea-deep: #2f4a4e;
    --sea-night: #1a2d31;

    /* Текст */
    --ink: #2a2520;
    --ink-soft: #5a5048;
    --ink-mute: #8a7f73;
    --paper: #faf6ee;

    /* Акценты */
    --accent: #b8743f;      /* янтарь */
    --accent-deep: #8a4f25;

    --shadow-sm: 0 1px 3px rgba(42, 37, 32, .08);
    --shadow-md: 0 8px 30px rgba(42, 37, 32, .12);
    --shadow-lg: 0 20px 60px rgba(42, 37, 32, .18);

    --radius: 4px;
    --container: 1180px;
    --serif: 'Cormorant Garamond', 'PT Serif', Georgia, serif;
    --text-serif: 'PT Serif', Georgia, serif;
    --sans: 'Inter', system-ui, -apple-system, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--text-serif);
    color: var(--ink);
    background: var(--paper);
    line-height: 1.7;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--sea-deep); text-decoration: none; transition: color .2s; }
a:hover { color: var(--accent); }
ul { list-style: none; }

/* ---------- Layout ---------- */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 110px 0;
    position: relative;
}
.section--alt {
    background: var(--sand-light);
}
.section__head {
    margin-bottom: 60px;
    max-width: 760px;
}
.section__eyebrow {
    font-family: var(--sans);
    font-size: 13px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--dune);
    font-weight: 500;
    margin-bottom: 18px;
}
.section__title {
    font-family: var(--serif);
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 500;
    line-height: 1.1;
    color: var(--sea-night);
    letter-spacing: -.01em;
}
.section__intro {
    margin-top: 18px;
    font-size: 1.1rem;
    color: var(--ink-soft);
    max-width: 620px;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    border: 1px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all .25s ease;
    text-align: center;
}
.btn--primary {
    background: var(--sea-deep);
    color: var(--paper);
}
.btn--primary:hover {
    background: var(--sea-night);
    color: var(--paper);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.btn--ghost {
    background: transparent;
    color: var(--paper);
    border-color: rgba(250, 246, 238, .5);
}
.btn--ghost:hover {
    background: rgba(250, 246, 238, .1);
    border-color: var(--paper);
    color: var(--paper);
}

/* =================================================================
   HERO — Балтийский берег
   ================================================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    color: var(--paper);
}
/* Дюны + море + небо — нарисованы градиентами, без внешних картинок */
.hero__bg {
    position: absolute;
    inset: 0;
    background:
        /* небо */
        linear-gradient(to bottom,
            #d9c9a8 0%,
            #e8d8b8 18%,
            #f0e2c4 32%,
            /* дальняя полоса моря */
            #a8c0be 50%,
            #88a8a6 58%,
            /* линия берега */
            #6b5037 60%,
            /* мокрый песок */
            #b89868 62%,
            #c8a878 66%,
            /* сухой песок / дюны */
            #d4b888 78%,
            #b8945c 100%
        );
}
/* Текстура песка */
.hero__bg::before {
    content: "";
    position: absolute;
    inset: 55% 0 0 0;
    background-image:
        radial-gradient(ellipse at 20% 60%, rgba(184, 120, 60, .15) 0%, transparent 40%),
        radial-gradient(ellipse at 75% 80%, rgba(120, 80, 40, .2) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 95%, rgba(90, 60, 30, .25) 0%, transparent 60%);
    pointer-events: none;
}
/* Растительная тень / тростник */
.hero__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 600px 200px at 0% 100%, rgba(60, 50, 30, .35) 0%, transparent 70%),
        radial-gradient(ellipse 500px 180px at 100% 100%, rgba(60, 50, 30, .3) 0%, transparent 70%);
    pointer-events: none;
}
.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(26, 45, 49, .25) 0%,
        rgba(26, 45, 49, .05) 30%,
        rgba(26, 45, 49, .15) 70%,
        rgba(26, 45, 49, .45) 100%);
}

/* Nav */
.nav {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px clamp(24px, 5vw, 60px);
    transition: all .3s;
}
.nav.scrolled {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: rgba(26, 45, 49, .92);
    backdrop-filter: blur(10px);
    padding: 16px clamp(24px, 5vw, 60px);
    box-shadow: var(--shadow-md);
}
.nav__brand {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 600;
    color: var(--paper);
    letter-spacing: .02em;
}
.nav__list {
    display: flex;
    gap: 32px;
    align-items: center;
}
.nav__list a {
    color: var(--paper);
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: .04em;
    opacity: .85;
    position: relative;
    padding: 4px 0;
}
.nav__list a::after {
    content: "";
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 1px;
    background: var(--paper);
    transition: width .25s;
}
.nav__list a:hover { opacity: 1; }
.nav__list a:hover::after { width: 100%; }

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 11;
}
.nav__toggle span {
    width: 26px; height: 2px;
    background: var(--paper);
    transition: all .3s;
}
.nav__toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero content */
.hero__content {
    position: relative;
    z-index: 5;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 24px;
}
.hero__eyebrow {
    font-family: var(--sans);
    font-size: 13px;
    letter-spacing: .35em;
    text-transform: uppercase;
    color: var(--paper);
    opacity: .8;
    margin-bottom: 24px;
}
.hero__title {
    font-family: var(--serif);
    font-size: clamp(4.5rem, 14vw, 11rem);
    font-weight: 500;
    line-height: .9;
    letter-spacing: .01em;
    color: var(--paper);
    text-shadow: 0 4px 40px rgba(26, 45, 49, .4);
    margin-bottom: 20px;
}
.hero__subtitle {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    color: var(--paper);
    opacity: .9;
    margin-bottom: 40px;
    max-width: 540px;
}
.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Scroll cue */
.hero__scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    width: 26px; height: 44px;
    border: 2px solid rgba(250, 246, 238, .6);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}
.hero__scroll span {
    width: 3px; height: 8px;
    background: var(--paper);
    border-radius: 2px;
    animation: scrollCue 1.8s infinite;
}
@keyframes scrollCue {
    0% { opacity: 0; transform: translateY(-4px); }
    40% { opacity: 1; }
    100% { opacity: 0; transform: translateY(10px); }
}

/* =================================================================
   AUTHOR
   ================================================================= */
.author {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 60px;
    align-items: start;
}
.author__photo {
    position: sticky;
    top: 100px;
    aspect-ratio: 3 / 4;
    background: linear-gradient(135deg, var(--sand-deep), var(--dune));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    position: relative;
}
.author__photo::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 30%, rgba(250, 246, 238, .3), transparent 60%),
        radial-gradient(circle at 70% 80%, rgba(47, 74, 78, .25), transparent 60%);
}
.author__initials {
    font-family: var(--serif);
    font-size: 5rem;
    color: var(--paper);
    opacity: .85;
    letter-spacing: .05em;
    position: relative;
}
.author__lead {
    font-family: var(--serif);
    font-size: 1.45rem;
    line-height: 1.5;
    color: var(--sea-night);
    margin-bottom: 24px;
}
.author__text p {
    margin-bottom: 18px;
    color: var(--ink-soft);
}
.author__text strong { color: var(--ink); }
.author__facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 36px;
    padding-top: 32px;
    border-top: 1px solid var(--sand-deep);
}
.author__facts li {
    display: flex;
    flex-direction: column;
}
.author__facts strong {
    font-family: var(--serif);
    font-size: 2.2rem;
    color: var(--sea-deep);
    line-height: 1;
    margin-bottom: 6px;
}
.author__facts span {
    font-family: var(--sans);
    font-size: 13px;
    color: var(--ink-mute);
    letter-spacing: .02em;
}

/* =================================================================
   MAGAZINE
   ================================================================= */
.magazine {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}
.issue {
    background: var(--paper);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform .3s, box-shadow .3s;
}
.issue:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.issue__cover {
    aspect-ratio: 3 / 4;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: var(--paper);
    position: relative;
    overflow: hidden;
}
.issue__cover--1 {
    background:
        linear-gradient(160deg, #5b7e7c 0%, #2f4a4e 100%);
}
.issue__cover--2 {
    background:
        linear-gradient(160deg, #6b5037 0%, #2a1f15 100%);
}
.issue__cover--3 {
    background:
        linear-gradient(160deg, #b8743f 0%, #6b3f1f 100%);
}
.issue__cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 70% 20%, rgba(255,255,255,.15), transparent 50%);
}
.issue__num {
    font-family: var(--serif);
    font-size: 2rem;
    font-style: italic;
    z-index: 1;
}
.issue__season {
    font-family: var(--sans);
    font-size: 13px;
    letter-spacing: .2em;
    text-transform: uppercase;
    opacity: .85;
    z-index: 1;
}
.issue__body { padding: 28px 26px 32px; }
.issue__body h3 {
    font-family: var(--serif);
    font-size: 1.5rem;
    color: var(--sea-night);
    margin-bottom: 10px;
    line-height: 1.2;
}
.issue__body p {
    color: var(--ink-soft);
    font-size: .95rem;
    margin-bottom: 18px;
}

.link-more {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--sea-deep);
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
    transition: all .2s;
}
.link-more:hover {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

/* =================================================================
   REVIEWS
   ================================================================= */
.reviews {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}
.review {
    background: var(--paper);
    border-radius: var(--radius);
    padding: 40px 32px;
    border-top: 3px solid var(--accent);
    box-shadow: var(--shadow-sm);
    position: relative;
}
.review::before {
    content: "“";
    position: absolute;
    top: 8px; left: 24px;
    font-family: var(--serif);
    font-size: 5rem;
    color: var(--sand-deep);
    line-height: 1;
}
.review blockquote {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.2rem;
    line-height: 1.5;
    color: var(--sea-night);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}
.review figcaption strong {
    display: block;
    color: var(--ink);
    font-family: var(--sans);
    font-size: 14px;
}
.review figcaption span {
    display: block;
    color: var(--ink-mute);
    font-family: var(--sans);
    font-size: 13px;
    margin-top: 2px;
}

/* =================================================================
   ARTICLES (Публицистика)
   ================================================================= */
.articles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--sand-deep);
}
.article {
    padding: 40px 32px 40px 0;
    border-bottom: 1px solid var(--sand-deep);
    border-right: 1px solid var(--sand-deep);
    transition: background .3s;
}
.article:nth-child(3n) { border-right: none; padding-right: 0; }
.article:nth-child(3n+1) { padding-left: 0; }
.article:nth-child(3n+2),
.article:nth-child(3n) { padding-left: 32px; }
.article:hover { background: rgba(232, 220, 196, .3); }
.article__meta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}
.article__meta time {
    font-family: var(--sans);
    font-size: 13px;
    color: var(--ink-mute);
    letter-spacing: .04em;
}
.tag {
    font-family: var(--sans);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--accent-deep);
    background: rgba(184, 116, 63, .12);
    padding: 3px 10px;
    border-radius: 20px;
}
.article h3 {
    font-family: var(--serif);
    font-size: 1.55rem;
    line-height: 1.2;
    margin-bottom: 12px;
}
.article h3 a { color: var(--sea-night); }
.article h3 a:hover { color: var(--accent); }
.article p {
    color: var(--ink-soft);
    font-size: .98rem;
    margin-bottom: 18px;
}

/* =================================================================
   BOOKS
   ================================================================= */
.books {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.book {
    display: flex;
    flex-direction: column;
}
.book__cover {
    aspect-ratio: 2 / 3;
    margin-bottom: 22px;
    border-radius: 2px 6px 6px 2px;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(0,0,0,.1),
        var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .3s, box-shadow .3s;
}
.book:hover .book__cover {
    transform: translateY(-6px) rotate(-1deg);
    box-shadow:
        0 0 0 1px rgba(0,0,0,.1),
        var(--shadow-lg);
}
/* Переплёт книги */
.book__cover::before {
    content: "";
    position: absolute;
    top: 0; bottom: 0; left: 0;
    width: 10px;
    background: linear-gradient(90deg, rgba(0,0,0,.25), transparent);
}
.book__cover--1 {
    background: linear-gradient(135deg, #2f4a4e, #1a2d31);
}
.book__cover--2 {
    background: linear-gradient(135deg, #b89868, #8a6a3e);
}
.book__cover--3 {
    background: linear-gradient(135deg, #b8743f, #6b3f1f);
}
.book__cover::after {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(250, 246, 238, .3);
    border-radius: 2px;
    pointer-events: none;
}
.book__title-mini {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.6rem;
    color: var(--paper);
    text-align: center;
    padding: 0 20px;
    line-height: 1.2;
    z-index: 1;
}
.book__info h3 {
    font-family: var(--serif);
    font-size: 1.5rem;
    color: var(--sea-night);
    margin-bottom: 4px;
}
.book__year {
    font-family: var(--sans);
    font-size: 13px;
    color: var(--dune);
    letter-spacing: .05em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.book__info p {
    color: var(--ink-soft);
    font-size: .98rem;
    margin-bottom: 16px;
}

/* =================================================================
   SUBSCRIBE
   ================================================================= */
.subscribe {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    background: var(--paper);
    padding: 60px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    border-left: 5px solid var(--accent);
}
.subscribe__text .section__title { margin-bottom: 16px; }
.subscribe__text p { color: var(--ink-soft); font-size: 1.05rem; }

.subscribe__form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
    font-family: var(--sans);
    font-size: 13px;
    color: var(--ink-soft);
    letter-spacing: .04em;
}
.field input {
    font-family: var(--text-serif);
    font-size: 16px;
    padding: 13px 16px;
    border: 1px solid var(--sand-deep);
    border-radius: var(--radius);
    background: var(--sand-light);
    color: var(--ink);
    transition: all .2s;
}
.field input:focus {
    outline: none;
    border-color: var(--sea);
    background: var(--paper);
    box-shadow: 0 0 0 3px rgba(91, 126, 124, .15);
}
.field input.invalid {
    border-color: #c0392b;
    background: #fdf3f1;
}
.field__error {
    font-family: var(--sans);
    font-size: 12px;
    color: #c0392b;
    min-height: 14px;
}
.subscribe__form .btn { margin-top: 6px; }
.subscribe__success {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.15rem;
    color: var(--sea-deep);
    text-align: center;
    padding: 10px;
}

/* =================================================================
   CONTACTS
   ================================================================= */
.contacts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
}
.contacts__card {
    background: var(--sand-light);
    padding: 44px 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}
.contacts__card--alt {
    background: var(--sea-night);
    color: var(--paper);
}
.contacts__card--alt h3,
.contacts__card--alt p { color: var(--paper); }
.contacts__card--alt p { opacity: .8; }
.contacts__card--alt .btn--ghost {
    border-color: rgba(250, 246, 238, .4);
    margin-top: 18px;
}
.contacts__card h3 {
    font-family: var(--serif);
    font-size: 1.6rem;
    color: var(--sea-night);
    margin-bottom: 8px;
}
.contacts__card > p {
    color: var(--ink-soft);
    margin-bottom: 24px;
}
.contacts__list { display: flex; flex-direction: column; gap: 16px; }
.contacts__list li {
    display: flex;
    flex-direction: column;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--sand-deep);
}
.contacts__list li:last-child { border-bottom: none; padding-bottom: 0; }
.contacts__label {
    font-family: var(--sans);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--ink-mute);
    margin-bottom: 4px;
}
.contacts__list a {
    font-family: var(--text-serif);
    font-size: 1.05rem;
    color: var(--sea-deep);
}

/* =================================================================
   FOOTER
   ================================================================= */
.footer {
    background: var(--sea-night);
    color: var(--paper);
    padding: 60px 0 30px;
}
.footer__inner {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 50px;
    align-items: start;
    margin-bottom: 40px;
}
.footer__logo {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}
.footer__brand p {
    opacity: .7;
    font-size: .95rem;
    max-width: 280px;
}
.footer__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 28px;
}
.footer__nav a {
    color: var(--paper);
    opacity: .75;
    font-family: var(--sans);
    font-size: 14px;
}
.footer__nav a:hover { opacity: 1; color: var(--accent); }
.footer__copy {
    border-top: 1px solid rgba(250, 246, 238, .15);
    padding-top: 24px;
    font-family: var(--sans);
    font-size: 13px;
    opacity: .6;
    grid-column: 1 / -1;
}

/* =================================================================
   Анимации появления
   ================================================================= */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =================================================================
   Адаптивность
   ================================================================= */
@media (max-width: 980px) {
    .section { padding: 80px 0; }

    .nav__list {
        position: fixed;
        top: 0; right: -100%;
        height: 100vh;
        width: min(320px, 85vw);
        background: var(--sea-night);
        flex-direction: column;
        justify-content: center;
        gap: 28px;
        padding: 60px 40px;
        transition: right .35s ease;
        box-shadow: -10px 0 40px rgba(0,0,0,.3);
    }
    .nav__list.open { right: 0; }
    .nav__toggle { display: flex; }

    .author { grid-template-columns: 1fr; gap: 36px; }
    .author__photo { position: relative; top: 0; max-width: 320px; }

    .magazine, .reviews, .articles, .books {
        grid-template-columns: repeat(2, 1fr);
    }
    .article:nth-child(3n) { border-right: 1px solid var(--sand-deep); }
    .article:nth-child(2n) { border-right: none; padding-right: 0; }
    .article:nth-child(2n+1) { padding-left: 0; }
    .article:nth-child(2n) { padding-left: 32px; }

    .subscribe, .contacts { grid-template-columns: 1fr; gap: 36px; }
    .subscribe { padding: 40px; }

    .footer__inner { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 600px) {
    body { font-size: 16px; }
    .section { padding: 60px 0; }
    .container { padding: 0 20px; }

    .hero__title { font-size: 5rem; }
    .hero__actions { flex-direction: column; width: 100%; max-width: 280px; }
    .hero__actions .btn { width: 100%; }

    .author__facts { grid-template-columns: 1fr; gap: 14px; }

    .magazine, .reviews, .articles, .books {
        grid-template-columns: 1fr;
    }
    .article {
        padding: 32px 0 !important;
        border-right: none !important;
    }

    .subscribe { padding: 30px 24px; }
    .contacts__card { padding: 32px 26px; }
}

/* Уважение к настройкам пользователя */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
    }
    html { scroll-behavior: auto; }
}
