/* shar26.ru — стили по макету Bitrix Landing */

:root {
    --primary: #6ab8ee;
    --primary-rgb: 106, 184, 238;
    --text: #12222d;
    --bg: #fafbfc;
    --white: #fff;
    --gray-light: #f5f5f5;
    --gray-border: #e5e5e5;
    --blue-dark-1: #14112c;
    --blue-dark-2: #1d1a37;
    --conditions-text: #ccc;
    --container: 1140px;
    --font-heading: "Cormorant Infant", Georgia, serif;
    --font-subheading: "Roboto Slab", Georgia, serif;
    --font-body: "Open Sans", Arial, sans-serif;
    --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
}

@font-face {
    font-family: "Cormorant Infant";
    src: url("../fonts/HhyCU44g9vKiM1sORYSiWeAsLN99xfs9KOOc_agJPrgdYOWT.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Cormorant Infant";
    src: url("../fonts/HhyCU44g9vKiM1sORYSiWeAsLN99xfs9KOOc_agJPrjxZ-WT.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Roboto Slab";
    src: url("../fonts/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjojIWWaA.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Roboto Slab";
    src: url("../fonts/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjoUoOWaA.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Open Sans";
    src: url("../fonts/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsgH1y4n.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Open Sans";
    src: url("../fonts/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjr0C4n.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Open Sans";
    src: url("../fonts/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsg-1y4n.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

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

html {
    scroll-behavior: smooth;
    font-size: 14px;
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 1.14286rem;
    line-height: 1.6;
    font-weight: 400;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body.nav-open {
    overflow: hidden;
}

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

a {
    color: var(--primary);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.4;
    margin: 0 0 1rem;
}

.container {
    width: min(100% - 2rem, var(--container));
    margin-inline: auto;
}

/* --- Анимации (как animate.css / js-animation Bitrix) --- */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translate3d(-50px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translate3d(50px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -30px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.anim {
    opacity: 0;
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-timing-function: ease;
}

.anim.is-visible.anim--fade-in {
    animation-name: fadeIn;
}

.anim.is-visible.anim--fade-in-left {
    animation-name: fadeInLeft;
}

.anim.is-visible.anim--fade-in-right {
    animation-name: fadeInRight;
}

.anim.is-visible.anim--fade-in-up {
    animation-name: fadeInUp;
}

.anim.is-visible.anim--fade-in-down {
    animation-name: fadeInDown;
}

/* --- Шапка --- */
.site-header {
    position: relative;
    z-index: 200;
}

.site-header.is-fixed {
    position: sticky;
    top: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.site-header__top {
    background: var(--white);
    border-bottom: 1px solid var(--gray-border);
}

.site-header__top-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
}

.site-header__logo {
    align-self: center;
}

.site-header__logo img {
    height: 52px;
    width: auto;
}

.site-header__info {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 0.65rem;
}

.site-header__info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.15rem;
    padding: 0;
    width: 100%;
    border-left: none;
}

.site-header__info-icon {
    display: none;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    background: center / contain no-repeat;
}

.icon-phone {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236ab8ee' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='7' y='2' width='10' height='20' rx='2'/%3E%3Cpath d='M11 5h2'/%3E%3C/svg%3E");
}

.icon-clock {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236ab8ee' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 6v6l4 2'/%3E%3C/svg%3E");
}

.icon-mail {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236ab8ee' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='M3 7l9 6 9-6'/%3E%3C/svg%3E");
}

.icon-location {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236ab8ee' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 21s7-4.5 7-11a7 7 0 1 0-14 0c0 6.5 7 11 7 11z'/%3E%3Ccircle cx='12' cy='10' r='2.5'/%3E%3C/svg%3E");
}

.site-header__info-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 0.15rem;
}

.site-header__info-value {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: #555;
    line-height: 1.3;
}

.site-header__info-value:hover {
    color: var(--primary);
    text-decoration: none;
}

.site-header__vk {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gray-light);
    color: #888;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-left: 0;
    transition: background 0.2s, color 0.2s;
}

.site-header__vk:hover {
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
}

.site-header__nav-bar {
    position: relative;
    background: var(--primary);
}

.site-header__nav-inner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-height: 44px;
    position: relative;
}

.site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 210;
    flex-direction: column;
    background: var(--primary);
    padding: 0.5rem 1rem 1rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.site-nav.is-open {
    display: flex;
}

.site-nav__link {
    color: var(--white);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.6rem 0;
}

.site-nav__link:hover {
    opacity: 0.85;
    text-decoration: none;
}

.site-nav__link--top {
    display: none;
}

@media (min-width: 992px) {
    .site-nav__link--top {
        display: block;
        min-width: 0.35rem;
        padding: 0.6rem 0;
        opacity: 0;
    }
}

.site-nav__burger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    cursor: pointer;
    margin-left: auto;
    padding: 0;
}

.site-nav__burger-box {
    display: block;
    width: 24px;
    height: 18px;
    position: relative;
}

.site-nav__burger-inner,
.site-nav__burger-inner::before,
.site-nav__burger-inner::after {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--white);
    transition: transform 0.2s;
}

.site-nav__burger-inner {
    top: 50%;
    transform: translateY(-50%);
}

.site-nav__burger-inner::before,
.site-nav__burger-inner::after {
    content: "";
}

.site-nav__burger-inner::before {
    top: -7px;
}

.site-nav__burger-inner::after {
    bottom: -7px;
}

.site-nav__burger[aria-expanded="true"] .site-nav__burger-inner {
    background: transparent;
}

.site-nav__burger[aria-expanded="true"] .site-nav__burger-inner::before {
    top: 0;
    transform: rotate(45deg);
}

.site-nav__burger[aria-expanded="true"] .site-nav__burger-inner::after {
    bottom: 0;
    transform: rotate(-45deg);
}

/* Компактная шапка на мобильных */
@media (max-width: 575px) {
    .site-header__top-inner {
        display: grid;
        grid-template-columns: 1fr auto;
        grid-template-areas:
            "logo vk"
            "info info";
        align-items: center;
        gap: 0.45rem;
        padding: 0.45rem 0;
    }

    .site-header__logo {
        grid-area: logo;
        justify-self: start;
        align-self: center;
    }

    .site-header__logo img {
        height: 38px;
    }

    .site-header__vk {
        grid-area: vk;
        width: 34px;
        height: 34px;
        font-size: 0.625rem;
        margin-left: 0;
    }

    .site-header__info {
        grid-area: info;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.35rem 0.5rem;
        width: 100%;
    }

    .site-header__info-item {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 0.3rem;
        padding: 0;
        width: auto;
    }

    .site-header__info-item:first-child {
        grid-column: 1 / -1;
    }

    .site-header__info-icon {
        display: block;
        width: 16px;
        height: 16px;
        flex-shrink: 0;
    }

    .site-header__info-label {
        display: none;
    }

    .site-header__info-value {
        font-size: 0.6875rem;
        font-weight: 600;
        line-height: 1.25;
    }

    .site-header__info-item:first-child .site-header__info-value {
        font-size: 0.8125rem;
    }

    .site-header__nav-inner {
        min-height: 38px;
    }

    .site-nav__burger {
        width: 38px;
        height: 38px;
    }
}

/* --- Герой --- */
.hero-swiper {
    width: 100%;
    height: 100vh;
    max-height: 100vh;
    min-height: 480px;
    position: relative;
}

.hero-swiper .swiper-slide {
    background-size: cover;
    background-position: center;
}

.hero__caption-wrap {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.hero__caption-box {
    width: min(92%, 800px);
    text-align: center;
}

.hero__caption {
    display: inline-block;
    position: relative;
    width: 100%;
    text-align: center;
    padding: 1.25rem;
    background: rgba(var(--primary-rgb), 0.4);
    pointer-events: auto;
}

.info-v3-4::before {
    content: "";
    position: absolute;
    top: 0.71429rem;
    right: 0.71429rem;
    bottom: 0.71429rem;
    left: 0.71429rem;
    border: 1px solid hsla(0, 0%, 100%, 0.4);
    z-index: 1;
    pointer-events: none;
}

.hero__caption > * {
    position: relative;
    z-index: 2;
}

.hero__label {
    margin: 0 0 0.65rem;
    font-family: var(--font-body);
    font-size: clamp(0.75rem, 2.8vw, 1rem);
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
}

.hero__title {
    margin: 0 0 1.25rem;
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 7vw, 2.5rem);
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white);
}

.hero__text {
    margin: 0 0 1.25rem;
    font-size: clamp(0.8125rem, 3.2vw, 1rem);
    letter-spacing: clamp(0.04em, 0.8vw, 0.15em);
    line-height: 1.8;
    color: var(--white);
}

.hero__btn {
    display: inline-block;
    pointer-events: auto;
    padding: 0.65rem 1.1rem;
    border: 2px solid var(--white);
    border-radius: 0;
    color: var(--white);
    font-family: var(--font-body);
    font-size: clamp(0.75rem, 3vw, 0.9rem);
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: background 0.2s, color 0.2s;
    word-break: break-word;
}

.hero__btn:hover {
    background: var(--white);
    color: var(--text);
    text-decoration: none;
}

/* --- Синие полосы-заголовки --- */
.strip {
    padding: 0.65rem 0;
    text-align: center;
}

.strip--primary {
    background: var(--primary);
}

.strip__title {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 5.5vw, 2.5rem);
    font-weight: 400;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: var(--white);
}

/* --- Секции --- */
.section {
    padding: 2rem 0;
}

.section--white {
    background: var(--white);
}

.section__lead {
    text-align: center;
    max-width: 42rem;
    margin: 0 auto 2rem;
}

.page-title {
    text-align: center;
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 1.5rem;
}

/* --- Воздушные шары --- */
.balloons__inner {
    padding: 1.5rem 0 2rem;
}

.balloons__grid {
    display: grid;
    gap: 2rem;
}

.balloons__image {
    width: 100%;
    margin-bottom: 1.5rem;
}

.balloons__name {
    font-family: var(--font-body);
    font-size: 1.28571rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text);
    margin: 0 0 1.25rem;
}

.balloons__text {
    margin: 0;
    color: #444;
}

/* --- Условия --- */
.section--conditions {
    background: var(--blue-dark-1);
    color: var(--conditions-text);
    padding: 1.42857rem 0;
}

.conditions__header {
    text-align: center;
    max-width: 40rem;
    margin: 0 auto 2.5rem;
}

.conditions__title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3vw, 2.85714rem);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--primary);
    display: inline-block;
}

.conditions__lead {
    color: var(--conditions-text);
    margin: 0;
}

.conditions__grid {
    display: grid;
    gap: 0.71429rem;
}

.conditions__card {
    position: relative;
    background: var(--blue-dark-2);
    margin-left: 2.14286rem;
    padding: 2.5rem 1.78571rem 2.5rem 4.28571rem;
}

.conditions__icon-wrap {
    position: absolute;
    left: 0;
    top: 50%;
    z-index: 2;
    width: 85px;
    height: 85px;
    border-radius: 50%;
    border: 5px solid var(--primary);
    background: var(--primary);
    overflow: hidden;
    transform: translate(-51%, -50%);
}

.conditions__icon-hover {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.15s ease-in;
}

.conditions__card:hover .conditions__icon-hover {
    opacity: 1;
}

.conditions__icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.15s;
}

.conditions__card:hover .conditions__icon {
    opacity: 0;
}

.conditions__icon--warning::before {
    content: "!";
    font-family: var(--font-body);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    color: var(--white);
}

.conditions__icon--weather::before {
    content: "☂";
    font-family: var(--font-body);
    font-size: 1.75rem;
    line-height: 1;
    color: var(--white);
}

.conditions__card-body {
    position: relative;
    z-index: 1;
}

.conditions__card-title {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--conditions-text);
    margin-bottom: 0.71429rem;
}

.conditions__card-text p {
    margin: 0 0 0.35rem;
    color: var(--conditions-text);
}

/* --- Карусель статей --- */
.section--articles {
    padding: 0;
    background: var(--white);
}

.articles-swiper-wrap {
    position: relative;
    padding: 0 2.25rem;
}

@media (max-width: 479px) {
    .articles-swiper-wrap {
        padding: 0 1.75rem;
    }

    .articles-swiper__arrow {
        width: 36px;
        height: 36px;
    }
}

.articles-swiper {
    overflow: hidden;
}

.articles-swiper .swiper-wrapper {
    align-items: stretch;
}

.articles-swiper .swiper-slide {
    height: auto;
    display: flex;
    align-self: stretch;
}

.article-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transition: box-shadow 0.25s;
}

.article-card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.article-card__image {
    width: 100%;
    aspect-ratio: 570 / 436;
    object-fit: cover;
}

.article-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    background: #1a2632;
    padding: 2rem 1.25rem 2.5rem;
    text-align: center;
    transition: background 0.25s;
}

.article-card:hover .article-card__body {
    background: var(--primary);
}

.article-card__title {
    font-family: var(--font-subheading);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.9375rem;
    min-height: 2.8em;
}

.article-card__title a {
    color: var(--white);
}

.article-card__title a:hover {
    text-decoration: none;
    opacity: 0.9;
}

.article-card__text {
    flex: 1;
    margin: 0 0 1.75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    min-height: 1.5em;
}

.article-card__btn {
    display: inline-block;
    align-self: center;
    width: auto;
    max-width: 100%;
    margin-top: auto;
    padding: 0.5rem 1.35rem;
    line-height: 1.4;
    background: var(--primary);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.85714rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 1px solid transparent;
    border-radius: 0;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s, border-color 0.2s, opacity 0.2s;
}

.article-card:hover .article-card__btn {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    text-decoration: none;
}

.article-card__btn:hover {
    text-decoration: none;
    opacity: 0.92;
}

.articles-swiper__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 45px;
    height: 45px;
    border: none;
    background: var(--primary);
    color: var(--white);
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.articles-swiper__arrow::before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    margin: auto;
}

.articles-swiper__arrow--prev {
    left: 0;
}

.articles-swiper__arrow--prev::before {
    transform: rotate(-135deg);
}

.articles-swiper__arrow--next {
    right: 0;
}

.articles-swiper__arrow--next::before {
    transform: rotate(45deg);
}

.articles-swiper__arrow:hover {
    background: var(--white);
    color: var(--primary);
}

/* --- Галерея-мозаика --- */
.gallery-mosaic {
    padding-top: 1.5rem;
}

.gallery-mosaic__grid {
    display: grid;
    gap: 0.75rem;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
}

.gallery-mosaic__cell {
    display: block;
    overflow: hidden;
    min-height: 160px;
}

.gallery-mosaic__cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.gallery-mosaic__cell--right {
    grid-column: 1 / -1;
    min-height: 200px;
}

.u-hover-zoom:hover img {
    transform: scale(1.08);
}

@media (prefers-reduced-motion: reduce) {
    .anim {
        opacity: 1;
        animation: none !important;
    }
}

.gallery-mosaic__more {
    padding-top: 0;
    text-align: center;
}

.gallery-page__grid {
    display: grid;
    gap: 0.75rem;
    grid-template-columns: repeat(2, 1fr);
}

.gallery-page__item {
    display: block;
    overflow: hidden;
    aspect-ratio: 1;
}

.gallery-page__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

/* --- Кнопки --- */
.btn {
    display: inline-block;
    padding: 0.65rem 1.75rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 0;
    border: 2px solid transparent;
    transition: filter 0.2s, background 0.2s, color 0.2s;
}

.btn:hover {
    text-decoration: none;
    filter: brightness(1.05);
}

.btn--primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn--white {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

/* --- Авиатрон --- */
.section--aviatron {
    position: relative;
    background: var(--primary);
    color: var(--white);
    padding: 2.5rem 0;
}

.aviatron {
    display: grid;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
}

.aviatron__logo {
    max-width: 200px;
    margin-inline: auto;
}

.aviatron__title {
    font-family: var(--font-subheading);
    font-size: 1.625rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.65rem;
    color: var(--white);
}

.aviatron__partner {
    margin: 0 0 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
}

.aviatron__text {
    margin: 0;
    font-size: 1.125rem;
    line-height: 1.5;
    color: var(--white);
}

.btn--inset {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    padding: 0.75rem 2rem;
    font-size: 1.125rem;
    font-weight: 400;
    text-transform: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.btn--inset:hover {
    filter: none;
    background: #f5f5f5;
    color: var(--primary);
}

/* --- Карточки / списки --- */
.cards-grid {
    display: grid;
    gap: 1.5rem;
    padding-bottom: 2rem;
}

.card {
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

.card__link {
    display: block;
    color: inherit;
}

.card__link:hover {
    text-decoration: none;
}

.card__image {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
}

.card__body {
    padding: 1.25rem;
}

.card__title {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
}

/* --- Статья --- */
.article {
    padding: 2rem 0 3rem;
}

.article__hero img {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    margin-bottom: 2rem;
}

.article__content {
    max-width: 48rem;
    margin-inline: auto;
}

.article__heading {
    font-family: var(--font-body);
    font-size: 1.1rem;
    margin-top: 1.5rem;
}

.breadcrumbs {
    font-size: 0.9rem;
    color: #666;
    padding: 0.5rem 0 1rem;
    line-height: 1.5;
    word-break: break-word;
}

.breadcrumbs a {
    color: var(--text);
}

.breadcrumbs__sep {
    margin: 0 0.35rem;
}

/* --- Контакты --- */
.section--contacts {
    padding: 2rem 0 2.5rem;
}

.contacts__grid {
    display: grid;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.contacts__item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--gray-light);
    border-left: 3px solid var(--primary);
}

.contacts__icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.contacts__body {
    min-width: 0;
}

.contacts__label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.contacts__value {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #555;
    line-height: 1.35;
}

a.contacts__value:hover {
    color: var(--primary);
    text-decoration: none;
}

.contacts__hint {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.875rem;
    color: #777;
}

.contacts__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contacts__vk {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    padding: 0.65rem 1.75rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--white);
    background: #4a76a8;
    border: 2px solid #4a76a8;
    transition: filter 0.2s, background 0.2s;
}

.contacts__vk:hover {
    filter: brightness(1.08);
    text-decoration: none;
    color: var(--white);
}

.contacts__map {
    overflow: hidden;
    border: 1px solid var(--gray-border);
    background: var(--gray-light);
}

.contacts__map iframe {
    display: block;
    width: 100%;
    height: 280px;
    border: 0;
}

/* --- Подвал --- */
.site-footer {
    background: var(--bg);
    color: #666;
    padding: 0.65rem 0;
    text-align: center;
    font-size: 0.75rem;
}

.site-footer__copyright {
    margin: 0;
}

/* --- Адаптив --- */
@media (min-width: 576px) {
    .conditions__card {
        margin-left: 0;
    }

    .site-header__top-inner {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: flex-start;
        gap: 1rem;
        padding: 0.65rem 0;
    }

    .site-header__logo {
        align-self: flex-start;
    }

    .site-header__info {
        flex: 1;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: flex-start;
        width: auto;
        gap: 0;
    }

    .site-header__info-item {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        width: auto;
        gap: 0.65rem;
        padding: 0 1rem;
        border-left: 1px solid var(--gray-border);
    }

    .site-header__info-item:first-child {
        border-left: none;
    }

    .site-header__info-icon {
        display: block;
    }

    .site-header__vk {
        display: flex;
        margin-left: auto;
    }
}

@media (min-width: 768px) {
    .site-header__info {
        flex-wrap: nowrap;
    }

    .hero__caption {
        padding: 3.75rem;
    }

    .conditions__grid {
        grid-template-columns: 1fr 1fr;
        column-gap: 3.75rem;
        row-gap: 0.71429rem;
        padding: 0 2.14286rem;
    }

    .conditions__card {
        margin-left: 0;
        padding: 2.5rem 1.78571rem 2.5rem 5rem;
    }

    .balloons__grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-mosaic__grid {
        grid-template-columns: 1fr 1fr 1.15fr;
        grid-template-rows: 1fr 1fr;
        min-height: 480px;
    }

    .gallery-mosaic__cell--lt {
        grid-column: 1;
        grid-row: 1;
    }

    .gallery-mosaic__cell--lb {
        grid-column: 1;
        grid-row: 2;
    }

    .gallery-mosaic__cell--ct {
        grid-column: 2;
        grid-row: 1;
    }

    .gallery-mosaic__cell--cb {
        grid-column: 2;
        grid-row: 2;
    }

    .gallery-mosaic__cell--right {
        grid-column: 3;
        grid-row: 1 / span 2;
        min-height: auto;
    }

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

    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contacts__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contacts__map iframe {
        height: 360px;
    }
}

@media (min-width: 992px) {
    .site-header__top-inner {
        flex-wrap: nowrap;
        align-items: center;
    }

    .site-header__info {
        flex-wrap: nowrap;
    }

    .site-header__info-item {
        padding: 0 1.25rem;
    }

    .site-header__nav-bar {
        padding: 0.9375rem 0;
    }

    .site-header__nav-inner {
        justify-content: center;
        min-height: 48px;
    }

    .site-nav__burger {
        display: none;
    }

    .site-nav {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0 1.875rem;
        position: static;
        padding: 0;
        box-shadow: none;
        background: transparent;
    }

    .site-nav__link {
        font-size: 0.92857rem;
        padding: 0.7rem 0;
        letter-spacing: 0.045em;
    }

    .site-nav__link--top {
        padding: 0.7rem 0;
    }

    .aviatron {
        grid-template-columns: minmax(160px, 200px) 1fr auto;
        grid-template-areas: "logo content btn";
        text-align: left;
        gap: 2rem;
    }

    .aviatron__logo-link {
        grid-area: logo;
    }

    .aviatron__content {
        grid-area: content;
    }

    .aviatron .btn--inset {
        grid-area: btn;
        align-self: center;
        justify-self: end;
    }

    .gallery-page__grid {
        grid-template-columns: repeat(4, 1fr);
    }

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

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

    .contacts__map iframe {
        height: 400px;
    }
}

@media (min-width: 1200px) {
    .site-header__nav-bar {
        padding: 1rem 0;
    }

    .site-header__nav-inner {
        min-height: 52px;
    }

    .site-nav {
        gap: 0 2.25rem;
    }

    .site-nav__link {
        font-size: 1rem;
        letter-spacing: 0.05em;
    }
}
