/* =====================================================================
   main.min.css — «Дети вместо цветов»
   Имя файла исторически "min", но по договорённости (как на vzglyady)
   здесь читаемый CSS — все правки добавляются в конец соответствующего
   блока этого же файла, отдельные patch-файлы не создаём.
   ===================================================================== */

/* ---------- 1. Шрифты -------------------------------------------------- */

@font-face {
    font-family: 'Sensei';
    src: url('../fonts/Sensei-Medium.woff2') format('woff2'),
         url('../fonts/Sensei-Medium.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* ---------- 2. Дизайн-токены -------------------------------------------- */

:root {
    /* Синие */
    --blue-900: #0047B8;
    --blue-800: #0050C9;
    --blue-700: #0064DE;
    --blue-600: #0865D8;
    --blue-500: #076CE3;
    --blue-400: #0D78F9;

    /* Лайм / акцент */
    --lime: #D8F516;
    --lime-soft: #D7EF22;
    --lime-decor: #C9DD32;

    /* Текст */
    --text-dark: #15293D;
    --text-muted: #5F738A;
    --text-on-blue: #FFFFFF;

    /* Фоны секций */
    --bg-page: #FFFFFF;
    --bg-light-blue: #E9F5FE;
    --bg-gradient-reviews: linear-gradient(180deg, #EEF8FF 0%, #F8FCFF 100%);

    /* Карточки */
    --card-bg: #FFFFFF;
    --card-border: rgba(8, 101, 216, 0.10);
    --card-shadow: 0 18px 42px rgba(6, 74, 167, 0.10);
    --card-shadow-lg: 0 24px 70px rgba(6, 74, 167, 0.13);
    --radius-card: 30px;
    --radius-card-sm: 22px;

    /* Типографика */
    --font-heading: 'Manrope', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-display: 'Sensei', var(--font-heading); /* кистевой шрифт заголовка "Дети вместо цветов" */

    --container-max: 1100px;
}

/* ---------- 3. Reset / базовые элементы --------------------------------- */

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

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.55;
    color: var(--text-dark);
    background: var(--bg-page);
    -webkit-font-smoothing: antialiased;
}

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

a { color: var(--blue-600); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3 { font-family: var(--font-heading); font-weight: 700; margin: 0; }

ul { margin: 0; padding: 0; list-style: none; }
p { margin: 0 0 16px; }
p:last-child { margin-bottom: 0; }

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

.section { padding: 72px 0; }

.screen-reader-text {
    position: absolute;
    left: -9999px;
}
.skip-link:focus {
    left: 16px;
    top: 16px;
    z-index: 9999;
    background: #fff;
    padding: 8px 16px;
    border-radius: 8px;
}

/* Универсальная заглушка под фото/иллюстрации, которых пока нет в проекте */
.img-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 240px;
    background: repeating-linear-gradient(45deg, #EEF3FB, #EEF3FB 10px, #E3ECFA 10px, #E3ECFA 20px);
    border-radius: 24px;
    color: var(--text-muted);
    font-size: 14px;
}

/* ---------- 4. Иконки --------------------------------------------------- */

.dvc-icon { display: inline-block; vertical-align: middle; }
.dvc-icon--heart { width: 0.85em; height: 0.85em; }
.dvc-icon--flower { width: 1em; height: 1em; }

/* ---------- 5. Кнопки ---------------------------------------------------- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 28px;
    height: 54px;
    border-radius: 999px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    border: 3px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; }

.btn--lime {
    background: var(--lime);
    border-color: #FFFFFF;
    color: var(--blue-600);
    box-shadow: 0 18px 36px rgba(216, 245, 22, 0.35);
}

.btn--lg { height: 64px; padding: 0 36px; font-size: 18px; }

/* ---------- 6. Заголовки секций ------------------------------------------ */

.section-title {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 38px;
    line-height: 1.2;
    color: var(--blue-500);
    margin-bottom: 32px;
}
.section-title .dvc-icon--heart { width: 34px; height: 34px; }
.section-title--center { justify-content: center; text-align: center; }

/* ---------- 7. Sticky-хедер (см. комментарий в header.php) -------------- */

.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 500;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(6, 74, 167, 0.08);
    transform: translateY(-100%);
    transition: transform .25s ease;
}
.site-header.is-visible { transform: translateY(0); }

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.site-header__logo img { height: 40px; width: auto; }
.site-header__logo-text { font-family: var(--font-heading); font-weight: 800; color: var(--blue-600); font-size: 20px; }

.site-header__nav { display: flex; align-items: center; gap: 28px; }
.nav-menu { display: flex; gap: 24px; }
.nav-menu a { color: var(--text-dark); font-weight: 600; font-size: 15px; }
.site-header__donate { height: 42px; padding: 0 22px; font-size: 13px; }

.burger { display: none; width: 44px; height: 44px; border: none; background: none; cursor: pointer; flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.burger__line { width: 22px; height: 2px; background: var(--blue-600); border-radius: 2px; }

/* ---------- 8. Hero ------------------------------------------------------- */

.hero {
    position: relative;
    overflow: hidden;
    padding: 56px 0 80px;
    background:
        radial-gradient(98% 125% at 28% 85%, rgba(0,70,180,0.55) 0%, rgba(0,70,180,0) 35%),
        radial-gradient(97% 123% at 75% 22%, rgba(36,152,255,0.32) 0%, rgba(36,152,255,0) 22%),
        linear-gradient(128deg, var(--blue-800) 0%, var(--blue-700) 48%, var(--blue-900) 100%);
    color: #fff;
}

.hero__decor { position: absolute; inset: 0; pointer-events: none; }
.hero__decor-item { position: absolute; opacity: .9; }
.hero__decor-item svg { width: 100%; height: 100%; }

.hero__decor-flowers-1 { top: 4%; right: 30%; width: 100px; height: 50px; }
.hero__decor-flowers-2 { top: 16%; right: 4%; width: 64px; height: 64px; }
.hero__decor-flower-big { top: 30%; right: -2%; width: 130px; height: 200px; opacity: .8; }

.hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 360px; gap: 40px; align-items: start; }

.hero__brand { grid-column: 1 / -1; margin-bottom: 24px; }
.hero__brand img { height: 64px; width: auto; }
.hero__brand-fallback { display: block; color: #fff; }
.hero__brand-fallback small { display: block; font-size: 11px; line-height: 1.3; opacity: .85; max-width: 260px; }
.hero__brand-fallback strong { font-family: var(--font-heading); font-size: 26px; font-weight: 800; }

.hero__eyebrow {
    display: inline-block;
    background: var(--lime-soft);
    color: var(--blue-600);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    line-height: 1.25;
    text-transform: uppercase;
    padding: 14px 22px;
    border-radius: 4px;
    transform: rotate(5deg);
    margin-bottom: 28px;
}

.hero__title {
    font-family: var(--font-display);
    font-weight: 400; /* Sensei — один начертание, без bold-вариантов; не просим 800, иначе браузер "утолщает" сам и буквы плывут */
    font-size: clamp(48px, 7vw, 92px);
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: -1px;
    transform: rotate(-3deg);
    margin-bottom: 28px;
}

.hero__badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 24px;
    line-height: 1.15;
    padding: 18px 26px;
    border-radius: 4px;
    transform: rotate(2deg);
    margin-bottom: 28px;
}
.hero__badge--white { background: #fff; color: var(--blue-600); }

.hero__lead { max-width: 440px; font-family: var(--font-heading); font-weight: 700; font-size: 19px; line-height: 1.4; margin-bottom: 32px; }

.hero__cta { position: relative; }

.hero__aside {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
}
.hero__aside .hero__eyebrow { margin-bottom: 0; align-self: flex-end; }
.hero__aside-tagline { font-family: var(--font-heading); font-weight: 700; font-size: 20px; margin: 0; display: flex; gap: 10px; align-items: flex-start; }
.hero__aside-tagline .dvc-icon { width: 22px; height: 22px; flex-shrink: 0; margin-top: 2px; }
.hero__aside-badge {
    background: var(--lime-decor);
    color: var(--blue-600);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 22px;
    line-height: 1.2;
    text-transform: uppercase;
    padding: 20px 22px;
    border-radius: 4px;
    transform: rotate(2deg);
}

/* ---------- 9. Об акции ---------------------------------------------------- */

.about-action__grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: center; }
.about-action__media img,
.about-action__media .img-placeholder { border-radius: 24px; aspect-ratio: 533/355; object-fit: cover; }

/* ---------- 10. Как принять участие ---------------------------------------- */

.how-to { background: var(--bg-light-blue); }
.how-to__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; margin-top: 40px; }
.how-to__step { text-align: center; }
.how-to__icon { margin-bottom: 20px; }
.how-to__icon img { margin: 0 auto; }
.how-to__step p { font-size: 15px; color: var(--text-dark); }

/* ---------- 11. Кому мы помогаем (донат) ------------------------------------ */

.help-donation__intro { max-width: 880px; margin-bottom: 40px; font-size: 17px; }
.help-donation__grid { display: grid; grid-template-columns: 520px 1fr; gap: 40px; align-items: center; }

.help-donation__widget {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-card);
    box-shadow: var(--card-shadow);
    padding: 32px;
}

.help-donation__illustration { position: relative; min-height: 360px; }
.help-donation__illustration .dvc-icon--flower:nth-of-type(1) { position: absolute; top: 0; right: 10%; width: 60px; height: 60px; }
.help-donation__illustration .dvc-icon--flower:nth-of-type(2) { position: absolute; bottom: 10%; left: 0; width: 90px; height: 90px; }
.help-donation__illustration .img-placeholder--illustration { min-height: 320px; }

/* Заглушка виджета Лейки, пока плагин не настроен на этой установке */
.leyka-placeholder__tabs { display: flex; gap: 8px; margin-bottom: 20px; }
.leyka-placeholder__tab { flex: 1; height: 44px; border-radius: 999px; border: 1px solid rgba(8,101,216,0.2); background: #fff; font-weight: 600; cursor: default; }
.leyka-placeholder__tab--active { background: var(--lime); border-color: var(--lime); }
.leyka-placeholder__note { font-size: 13px; color: var(--text-muted); margin-top: 16px; }

/* ---- Перекраска реального виджета Лейки (шаблон "star") --------------------
   Плагин Лейка сам устроен через CSS-переменные в :root (см. исходники
   Teplitsa/Leyka, src/sass/form_templates/star/_presets.scss). Переопределяя
   их внутри .help-donation__widget, перекрашиваем кнопку, активный таб
   "разовый/рекуррентный" и подсветку выбранной суммы — без !important.
   Сочетание lime-фон + синий текст повторяет нашу .btn--lime.
   Структурные правки (border-radius) ниже специально мирорят полный путь
   исходного селектора Лейки + наш класс-обёртку — так специфичность
   у нас выше и !important не нужен. После загрузки на сервер обязательно
   сверить с реальным рендером — точные классы могут отличаться по версии
   плагина (то, что не подошло, просто можно убрать/уточнить отдельным
   правкой здесь же, без новых файлов). */
.help-donation__widget {
    --leyka-font-main: var(--font-body);
    --leyka-color-main: var(--lime);
    --leyka-color-text-light: var(--blue-600);
    --leyka-color-main-second: #E6F868;
    --leyka-color-main-third: #F9FEDC;
    --leyka-color-main-inactive: #ECFA8A;
}

/* Текстовые поля (e-mail, имя, "Номер школы"/"Номер класса") — мягче скругление */
.help-donation__widget .leyka-tpl-star-form .section .section__fields.donor .donor__textfield .leyka-star-field-frame,
.help-donation__widget .leyka-screen-form .section .section__fields.donor .donor__textfield .leyka-star-field-frame {
    border-radius: 14px;
}

/* Таб "Разовые / Рекуррентные платежи" — пилюля, как наши .btn */
.help-donation__widget .leyka-tpl-star-form .section .section__fields.periodicity a,
.help-donation__widget .leyka-screen-form .section .section__fields.periodicity a {
    border-radius: 999px;
}

/* Кнопка "Пожертвовать" — пилюля */
.help-donation__widget .leyka-tpl-star-form .section .section__fields .donor__submit input,
.help-donation__widget .leyka-screen-form .section .section__fields .donor__submit input {
    border-radius: 999px;
}

/* ---------- 12. Истории подопечных ------------------------------------------ */

.stories__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }
.stories__slider { display: none; } /* видна только на мобильных, см. media query */

.story-card {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 20px;
    background: var(--card-bg);
    border-radius: var(--radius-card);
    box-shadow: var(--card-shadow);
    padding: 20px;
}
.story-card__photo { aspect-ratio: 1/1; border-radius: 10px; overflow: hidden; }
.story-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.story-card__name { display: flex; align-items: center; gap: 8px; font-size: 26px; color: var(--blue-600); margin-bottom: 10px; }
.story-card__excerpt { font-size: 14px; color: var(--text-dark); margin-bottom: 16px; }
.story-card__link {
    display: inline-flex; align-items: center; gap: 10px;
    background: none; border: 1px solid rgba(8,101,216,0.15); border-radius: 999px;
    height: 38px; padding: 0 16px; font-weight: 700; font-size: 13px; color: var(--blue-600);
    cursor: pointer;
}
.story-card__link .dvc-icon { width: 16px; height: 16px; background: var(--lime); border-radius: 50%; padding: 5px; box-sizing: content-box; }

.stories__cta {
    display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
    background: rgba(255,255,255,0.7);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-card);
    box-shadow: var(--card-shadow);
    padding: 28px 32px;
    margin-top: 40px;
}
.stories__cta p { flex: 1; min-width: 220px; margin: 0; }
.stories__cta .dvc-icon--heart { width: 30px; height: 30px; flex-shrink: 0; }

/* ---------- 13. Об организации ---------------------------------------------- */

.about-org__card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 34px;
    box-shadow: var(--card-shadow-lg);
    padding: 48px;
    font-size: 16px;
}

/* ---------- 14. Уроки доброты ------------------------------------------------ */

.kindness-lessons { background: var(--blue-600); color: #fff; }
.kindness-lessons__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.kindness-lessons__title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 56px;
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: -2px;
    margin-bottom: 16px;
}
.kindness-lessons__lead { opacity: .85; margin-bottom: 20px; }
.kindness-lessons__what { margin-bottom: 12px; }
.kindness-lessons__list { margin-bottom: 28px; display: flex; flex-direction: column; gap: 12px; }
.kindness-lessons__list li { display: flex; align-items: center; gap: 12px; font-size: 15px; }
.kindness-lessons__list .dvc-icon--flower { width: 18px; height: 18px; flex-shrink: 0; }
.kindness-lessons__media .img-placeholder { aspect-ratio: 563/422; transform: rotate(-1.5deg); border: 8px solid #fff; border-radius: 28px; }

/* ---------- 15. Отзывы --------------------------------------------------------- */

.reviews { background: var(--bg-gradient-reviews); }
.reviews__carousel-wrap { position: relative; display: flex; align-items: center; gap: 16px; }
.reviews__slider { flex: 1; overflow: hidden; padding: 12px 0 24px; }

.review-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 30px;
    box-shadow: var(--card-shadow);
    padding: 32px 28px;
    height: 100%;
    transition: box-shadow .2s ease, border-color .2s ease;
}
.swiper-slide-active .review-card { border-color: var(--lime); box-shadow: 0 24px 60px rgba(216,245,22,0.25); }

.review-card__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.review-card__top .dvc-icon--quote { width: 30px; height: 22px; }
.review-card__top .dvc-icon--flower { width: 26px; height: 26px; }
.review-card__text { font-weight: 700; font-size: 16px; line-height: 1.5; color: var(--text-dark); margin-bottom: 24px; }
.review-card__author { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 2px dashed rgba(109,167,255,0.6); }
.review-card__avatar { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.review-card__avatar--placeholder { background: #EAF6FF; }
.review-card__author strong { display: block; font-size: 14px; color: var(--blue-600); }
.review-card__author span { font-size: 13px; color: var(--text-muted); }

.reviews__nav {
    width: 48px; height: 48px; border-radius: 50%; border: none; background: #fff;
    box-shadow: 0 14px 38px rgba(6,74,167,0.13);
    font-size: 24px; color: var(--blue-600); cursor: pointer; flex-shrink: 0;
}
.reviews__pagination { display: flex; justify-content: center; gap: 8px; margin-top: 8px; }
.reviews__pagination .swiper-pagination-bullet { width: 12px; height: 12px; border-radius: 50%; background: #BFDDFF; opacity: 1; }
.reviews__pagination .swiper-pagination-bullet-active { background: var(--blue-600); }

.reviews__cta {
    display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
    background: var(--blue-600); color: #fff;
    border-radius: 32px; padding: 28px 36px; margin-top: 48px;
}
.reviews__cta .dvc-icon--heart { width: 44px; height: 44px; flex-shrink: 0; }
.reviews__cta div { flex: 1; min-width: 220px; }
.reviews__cta strong { color: var(--lime); font-size: 18px; }

/* ---------- 16. Контакты -------------------------------------------------------- */

.contacts__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; }
.contacts__map {
    border-radius: 28px;
    background: linear-gradient(130deg, #D7EEFF 0%, #FFFFFF 100%);
    border: 1px solid var(--card-border);
    box-shadow: var(--card-shadow-lg);
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contacts__map-link { font-weight: 700; color: var(--blue-600); }

.contacts__cards { display: flex; flex-direction: column; gap: 16px; }
.contacts__card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-card-sm);
    box-shadow: 0 14px 34px rgba(6,74,167,0.07);
    padding: 22px 24px;
}
.contacts__card h3 { font-size: 16px; color: var(--blue-600); margin-bottom: 6px; }
.contacts__card p { margin: 0; color: var(--text-dark); }
.contacts__card a { color: var(--text-dark); }

/* ---------- 17. Модалка "Читать историю" ----------------------------------------- */

.story-modal { position: fixed; inset: 0; z-index: 1000; display: none; }
.story-modal[aria-hidden="false"] { display: block; }
.story-modal__overlay { position: absolute; inset: 0; background: rgba(8,30,60,0.55); }
.story-modal__dialog {
    position: relative;
    max-width: 640px;
    margin: 6vh auto;
    max-height: 88vh;
    overflow-y: auto;
    background: #fff;
    border-radius: 28px;
    padding: 32px;
}
.story-modal__close {
    position: absolute; top: 16px; right: 16px;
    width: 36px; height: 36px; border-radius: 50%;
    border: none; background: var(--bg-light-blue);
    font-size: 22px; line-height: 1; cursor: pointer; color: var(--blue-600);
}
.story-modal__photo { border-radius: 18px; overflow: hidden; margin-bottom: 20px; aspect-ratio: 16/10; }
.story-modal__photo img { width: 100%; height: 100%; object-fit: cover; }
.story-modal__name { font-size: 26px; color: var(--blue-600); margin-bottom: 12px; }
.story-modal__text p { margin-bottom: 14px; }
body.story-modal-open { overflow: hidden; }

/* ---------- 18. Футер --------------------------------------------------------------- */

.site-footer { background: #F6F3EE; padding: 32px 0; }
.site-footer__inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; font-size: 14px; color: var(--text-muted); }
.site-footer__payments { display: flex; gap: 12px; }
.payment-icon { font-size: 11px; font-weight: 700; color: var(--text-muted); border: 1px solid #ddd; border-radius: 4px; padding: 4px 8px; }

/* ---------- 19. Page (служебные страницы: оферта, политика) --------------------------- */

.page-content-wrap { padding: 56px 0 80px; max-width: 760px; margin: 0 auto; }
.page-header__title { font-size: 32px; color: var(--blue-600); margin-bottom: 24px; }

/* ======================================================================
   20. АДАПТИВ
   ====================================================================== */

@media (max-width: 1023px) {
    .section { padding: 56px 0; }
    .section-title { font-size: 28px; }

    .about-action__grid,
    .help-donation__grid,
    .kindness-lessons__grid,
    .contacts__grid { grid-template-columns: 1fr; gap: 32px; }

    .how-to__grid { grid-template-columns: repeat(3, 1fr); }

    .hero__inner { grid-template-columns: 1fr; }
    .hero__aside { max-width: 360px; }

    .burger { display: flex; }
    .site-header__nav {
        position: absolute; top: 100%; left: 0; right: 0;
        flex-direction: column; align-items: stretch; gap: 12px;
        background: #fff; padding: 16px 20px; box-shadow: 0 14px 30px rgba(6,74,167,0.12);
        transform: translateY(-10px); opacity: 0; pointer-events: none; transition: .2s ease;
    }
    .site-header__nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
    .nav-menu { flex-direction: column; gap: 14px; }
}

@media (max-width: 767px) {
    .how-to__grid { grid-template-columns: 1fr 1fr; }

    .hero__title { font-size: clamp(40px, 12vw, 56px); }
    .hero__decor-flower-big,
    .hero__decor-flowers-1 { display: none; } /* по мобильному макету декора меньше */

    /* Истории: на мобиле — Swiper-карусель вместо сетки 2×2 */
    .stories__grid { display: none; }
    .stories__slider { display: block; }
    .story-card { grid-template-columns: 1fr; }
    .story-card__photo { aspect-ratio: 16/10; }

    .reviews__nav { display: none; } /* на мобиле — только свайп + точки пагинации */

    .stories__cta,
    .reviews__cta { flex-direction: column; text-align: center; }

    .story-modal__dialog { margin: 4vh 16px; padding: 24px; }
}

/* Уважение к reduced-motion */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .btn, .site-header, .site-header__nav { transition: none; }
}
