/* =========================================================
   MUZGO — ЧИСТЫЙ ГЛОБАЛЬНЫЙ CSS
   Только общие настройки сайта.
   Стили отдельных блоков находятся в их T123.
   ========================================================= */

:root{
    --muzgo-brown:#4b1a0f;
    --muzgo-wine:#5a1d30;
    --muzgo-wine-dark:#3d111f;
    --muzgo-pink:#a92e61;
    --muzgo-gold:#ffb11e;
    --muzgo-gold-soft:#f3c35c;
    --muzgo-cream:#fff5ee;
    --muzgo-dark:#120d0b;
    --muzgo-text:#f8ede7;
}

html{
    scroll-behavior:smooth;
}

html,
body{
    margin:0;
    padding:0;
}

body{
    overflow-x:hidden;
}

#allrecords{
    overflow:hidden;
}

/* Единый расчёт размеров */

#allrecords,
#allrecords *,
#allrecords *::before,
#allrecords *::after{
    box-sizing:border-box;
}

/* Убираем внешние зазоры между записями Tilda */

#allrecords > .r{
    margin-top:0 !important;
    margin-bottom:0 !important;
}

/* Ссылки с телефона и почты */

a[href^="tel:"],
a[href^="mailto:"]{
    text-decoration:none;
}

/* Корректный переход к якорям с учётом шапки */

section[id],
div[id]{
    scroll-margin-top:80px;
}

/* Доступность: видимый фокус клавиатуры */

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible{
    outline:2px solid var(--muzgo-gold);
    outline-offset:3px;
}

/* Убираем лишний нижний зазор страницы */

#allrecords > .r:last-child{
    margin-bottom:0 !important;
}

/* Системное уменьшение анимации */

@media(prefers-reduced-motion:reduce){

    html{
        scroll-behavior:auto;
    }

    *,
    *::before,
    *::after{
        animation-duration:.01ms !important;
        animation-iteration-count:1 !important;
        transition-duration:.01ms !important;
    }
}