:root {
    --dl-ink: #183042;
    --dl-ink-soft: #526673;
    --dl-navy: #123b5d;
    --dl-blue: #1777a8;
    --dl-blue-bright: #2993d1;
    --dl-coral: #e75c50;
    --dl-cream: #f6f3ec;
    --dl-paper: #fffdfa;
    --dl-white: #ffffff;
    --dl-line: #dce4e6;
    --dl-shadow: 0 20px 50px rgba(18, 59, 93, .11);
    --dl-radius-sm: 14px;
    --dl-radius: 24px;
    --dl-radius-lg: 36px;
}

html { scroll-behavior: smooth; }

body {
    background: var(--dl-cream);
    color: var(--dl-ink);
    font-family: "Roboto", "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background-image: radial-gradient(rgba(18, 59, 93, .045) .8px, transparent .8px);
    background-size: 18px 18px;
}

::selection { background: rgba(41, 147, 209, .24); color: var(--dl-navy); }

a { color: var(--dl-blue); transition: color .2s ease, background-color .2s ease, transform .2s ease, box-shadow .2s ease; }
a:hover { color: var(--dl-navy); }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
    outline: 3px solid rgba(41, 147, 209, .38);
    outline-offset: 3px;
}

h1, h2, h3, .section-title {
    color: var(--dl-navy);
    font-family: Georgia, "Times New Roman", serif;
    letter-spacing: -.025em;
}

.container { max-width: 1200px; }

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 10000;
    padding: 10px 16px;
    border-radius: 10px;
    background: var(--dl-white);
    color: var(--dl-navy);
    box-shadow: var(--dl-shadow);
    transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

/* Header */
.site-header {
    position: relative;
    z-index: 100;
    background: rgba(255, 253, 250, .97);
    border-bottom: 1px solid rgba(18, 59, 93, .08);
    box-shadow: 0 7px 30px rgba(18, 59, 93, .045);
    backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
    position: sticky;
    top: 0;
    box-shadow: 0 12px 32px rgba(18, 59, 93, .12);
}

.site-header__bar { background: var(--dl-navy); color: rgba(255,255,255,.78); }
.site-header__bar-inner { min-height: 34px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.site-header__bar p { margin: 0; font-size: 12px; letter-spacing: .055em; text-transform: uppercase; }
.site-header__utility { display: flex; align-items: center; gap: 24px; }
.site-header__utility a { color: rgba(255,255,255,.88); font-size: 13px; text-decoration: none; }
.site-header__utility a:hover { color: var(--dl-white); }
.site-header__utility i { margin-right: 6px; color: #8fd4f4; }

.site-header__main { padding-top: 16px; padding-bottom: 14px; }
.navigation-container { position: relative; display: flex; align-items: center; justify-content: space-between; width: 100%; height: auto; gap: 30px; }
.logo-container { width: auto !important; min-width: 300px; display: flex; align-items: center; justify-content: flex-start !important; gap: 14px; text-decoration: none; }
.logo-container .logo { width: 60px; height: 60px; object-fit: contain; }
.site-header__brand { display: flex; flex-direction: column; line-height: 1.1; }
.site-header__brand strong { color: var(--dl-navy); font-family: Georgia, "Times New Roman", serif; font-size: 21px; font-weight: 600; }
.site-header__brand small { margin-top: 7px; color: var(--dl-ink-soft); font-size: 12px; letter-spacing: .04em; }

.navigation { width: auto !important; flex: 1; display: flex !important; align-items: flex-end; }
.top-nav-container { position: static !important; width: 100%; display: flex; align-items: center; justify-content: flex-end; gap: clamp(13px, 1.6vw, 28px); }
.top-nav-container .top-nav-link {
    padding: 9px 0;
    color: var(--dl-ink);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .045em;
    text-decoration: none;
    text-transform: none;
    white-space: nowrap;
}
.top-nav-container .top-nav-link::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    margin-top: 5px;
    background: var(--dl-coral);
    transition: width .2s ease;
}
.top-nav-container .top-nav-link:hover::after { width: 100%; }

.search-btn {
    min-width: 105px;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    border-radius: 999px;
    background: var(--dl-navy);
    color: var(--dl-white);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}
.search-btn:hover { background: var(--dl-blue); transform: translateY(-1px); }
.search-btn .tech-icon { width: 17px; filter: brightness(0) invert(1); }

.search-field {
    position: absolute;
    inset: -6px 0 -6px auto;
    z-index: 3;
    width: min(720px, calc(100% - 280px));
    margin: 0;
    padding: 8px 12px 8px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--dl-line);
    border-radius: 18px;
    background: var(--dl-white);
    box-shadow: var(--dl-shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .2s ease, transform .2s ease;
}
.search-field.search-field-active { opacity: 1; pointer-events: auto; transform: translateY(0); }
.search-field input { flex: 1; height: 44px; border: 0; background: transparent; color: var(--dl-ink); font-size: 17px; outline: 0; }
.search-field__submit, .close-search {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
}
.search-field__submit { background: var(--dl-blue); color: var(--dl-white); }
.close-search { position: static; background: transparent; color: var(--dl-ink-soft); font-size: 20px; }

.services-nav {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid var(--dl-line);
}
.services-nav .bottom-nav-link {
    min-width: 0;
    min-height: 58px;
    margin: 0;
    padding: 8px 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    border-radius: 13px;
    color: var(--dl-ink);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
}
.services-nav .bottom-nav-link:hover { background: #eaf3f6; color: var(--dl-navy); transform: translateY(-1px); }
.services-nav .bottom-nav-link img { width: 34px !important; height: 34px; margin: 0; object-fit: contain; }

.open-mobile-menu, .mobile-logo-name { display: none; }
.mobile-nav { display: none; }

/* Hero */
.home-hero {
    position: relative;
    min-height: 535px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(90deg, rgba(10, 38, 58, .94) 0%, rgba(18, 59, 93, .84) 46%, rgba(18, 59, 93, .18) 100%), url('/themes/default/img/backgrounds/board-back.jpg') center / cover no-repeat;
}
.home-hero::after {
    content: "";
    position: absolute;
    right: -110px;
    bottom: -180px;
    width: 430px;
    height: 430px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 50%;
    box-shadow: 0 0 0 70px rgba(255,255,255,.035), 0 0 0 140px rgba(255,255,255,.025);
}
.home-hero__inner { position: relative; z-index: 1; display: flex; align-items: flex-end; justify-content: space-between; gap: 48px; padding-top: 74px; padding-bottom: 74px; }
.home-hero__copy { max-width: 700px; }
.home-hero__eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 22px; color: #9cd8f3; font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.home-hero__eyebrow::before { content: ""; width: 34px; height: 2px; background: var(--dl-coral); }
.home-hero h1 { max-width: 690px; margin: 0; color: var(--dl-white); font-size: clamp(46px, 5.3vw, 74px); font-weight: 500; line-height: .98; letter-spacing: -.045em; }
.home-hero__copy > p { max-width: 570px; margin: 27px 0 0; color: rgba(255,255,255,.79); font-size: 19px; line-height: 1.55; }
.home-hero__actions { margin-top: 35px; display: flex; align-items: center; flex-wrap: wrap; gap: 12px; }
.button {
    min-height: 52px;
    padding: 13px 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    cursor: pointer;
}
.button:hover { text-decoration: none; transform: translateY(-2px); }
.button--primary { background: var(--dl-coral); color: var(--dl-white); box-shadow: 0 12px 26px rgba(142, 41, 34, .25); }
.button--primary:hover { background: #f06b60; color: var(--dl-white); box-shadow: 0 16px 30px rgba(142, 41, 34, .31); }
.button--light { border-color: rgba(255,255,255,.35); background: rgba(255,255,255,.1); color: var(--dl-white); backdrop-filter: blur(10px); }
.button--light:hover { background: var(--dl-white); color: var(--dl-navy); }
.home-hero__note { min-width: 175px; margin-bottom: 4px; padding: 22px 23px; display: flex; align-items: center; gap: 13px; border: 1px solid rgba(255,255,255,.22); border-radius: 20px; background: rgba(10,38,58,.45); color: rgba(255,255,255,.8); font-size: 12px; line-height: 1.45; backdrop-filter: blur(12px); }
.home-hero__note-number { color: var(--dl-white); font-family: Georgia, serif; font-size: 42px; line-height: 1; }

/* Homepage sections */
.home-featured { padding: 72px 0 26px; }
.home-featured::before { content: "Актуальное"; max-width: 1170px; margin: 0 auto 22px; padding: 0 15px; display: block; color: var(--dl-navy); font-family: Georgia, serif; font-size: 34px; letter-spacing: -.03em; }
.home-featured .slider-wrapper { overflow: visible; }
.home-featured .slider { width: 100%; max-width: 940px; padding: 0 40px; }
.home-featured .slider .container { max-width: none; padding: 0; }
.home-featured .board-border { padding: 0 !important; border: 0 !important; border-radius: var(--dl-radius); overflow: hidden; background: var(--dl-white); box-shadow: var(--dl-shadow); }
.home-featured .board-content { padding: 0 !important; background: var(--dl-white); }
.home-featured .board-content .row { width: 100%; margin: 0; }
.home-featured .board-content [class*="col-"] { padding: 0; }
.home-featured .board-content img { width: 100%; max-height: 450px; object-fit: cover; display: block; }
.home-featured .slick-dots { bottom: -36px; }
.home-featured .slick-dots li { width: 8px; height: 8px; margin: 0 5px; }
.home-featured .slick-dots li button { width: 8px; height: 8px; padding: 0; border-radius: 50%; background: #b8c8cf; }
.home-featured .slick-dots li.slick-active button { width: 24px; border-radius: 10px; background: var(--dl-coral); }
.home-featured .slick-dots li button::before { display: none; }
.home-featured .prev, .home-featured .next {
    position: absolute !important;
    top: 50%;
    width: 46px !important;
    height: 46px !important;
    margin-top: -23px;
    display: grid !important;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: var(--dl-white);
    color: var(--dl-navy);
    box-shadow: 0 10px 30px rgba(18,59,93,.18);
    opacity: 1 !important;
}
.home-featured .prev { left: 0 !important; }
.home-featured .next { right: 0 !important; transform: none !important; }

.feedback-invite { margin-top: 58px; margin-bottom: 64px; padding: 0 15px; }
.feedback-invite > .row { margin: 0; padding: 40px clamp(24px, 5vw, 70px); border-radius: var(--dl-radius-lg); background: var(--dl-navy); color: var(--dl-white); box-shadow: var(--dl-shadow); }
.feedback-invite h3 { margin: 0; color: var(--dl-white); font-size: clamp(26px, 3vw, 39px); font-weight: 500; line-height: 1.15; }
.feedback-invite h3 + h3 { margin-top: 10px; color: rgba(255,255,255,.68); font-family: "Roboto", sans-serif; font-size: 15px; font-weight: 400; letter-spacing: 0; }
.feedback-invite .wrap { margin-top: 20px; gap: 10px; }
.feedback-invite .wrap a { margin: 0 !important; padding: 12px 18px; border: 1px solid rgba(255,255,255,.25); border-radius: 999px; color: var(--dl-white); text-decoration: none; }
.feedback-invite .wrap a:first-child { background: var(--dl-coral); border-color: var(--dl-coral); }
.feedback-invite .wrap a:hover { background: var(--dl-white); color: var(--dl-navy); transform: translateY(-2px); }
.feedback-invite h4 { margin: 0; font-size: 14px; font-weight: 700; }

.public-services { margin-bottom: 70px; }
.public-services > .row { overflow: hidden; border-radius: var(--dl-radius); box-shadow: var(--dl-shadow); }
.public-services #js-show-iframe-wrapper { border-radius: var(--dl-radius); overflow: hidden; }

.events-section { padding-top: 18px; padding-bottom: 80px !important; }
.events-section .title { margin-bottom: 32px !important; }
.events-section .section-title-line { height: 1px; background: var(--dl-line); }
.events-section .section-title { color: var(--dl-navy); font-size: 34px; font-weight: 500; }
.home-page .events-section .post-slide { height: calc(100% - 28px); margin: 14px 0; padding: 0; overflow: hidden; border: 1px solid rgba(18,59,93,.08); border-radius: 20px; background: var(--dl-white); box-shadow: 0 12px 35px rgba(18,59,93,.08); transition: transform .25s ease, box-shadow .25s ease; }
.home-page .events-section .post-slide:hover { transform: translateY(-6px); box-shadow: var(--dl-shadow); }
.home-page .events-section .post-img { height: 218px; margin: 0; border-radius: 0; }
.home-page .events-section .post-img img { width: 100%; height: 100%; object-fit: cover; }
.home-page .events-section .over-layer { background: linear-gradient(0deg, rgba(18,59,93,.42), transparent); }
.home-page .events-section .post-content { min-height: 190px; padding: 23px 24px 27px; display: flex; flex-direction: column; border-radius: 0; }
.home-page .events-section .post-description { margin: 0 0 18px; color: var(--dl-ink); font-family: Georgia, serif; font-size: 20px; font-weight: 500; line-height: 1.28; text-transform: none; }
.home-page .events-section .post-date { order: -1; margin-bottom: 12px; color: var(--dl-blue); font-size: 12px; font-weight: 700; letter-spacing: .04em; }
.home-page .events-section .read-more { margin-top: auto; padding: 0; align-self: flex-start; float: none; background: transparent; color: var(--dl-navy); box-shadow: none; font-size: 12px; font-weight: 700; letter-spacing: .06em; }
.home-page .events-section .read-more::after { content: " →"; color: var(--dl-coral); }
.events-section .news-link { display: inline-flex; padding: 12px 22px; border: 1px solid var(--dl-line); border-radius: 999px; color: var(--dl-navy); text-decoration: none; }
.events-section .news-link:hover { border-color: var(--dl-blue); background: var(--dl-white); }
.events-section .news-link-name { font-size: 14px; font-weight: 700; }

/* General content */
.content-container, .single-container, .news-container { margin-top: 42px; margin-bottom: 70px; }
.card { border-color: rgba(18,59,93,.1); border-radius: 18px !important; background: var(--dl-white); box-shadow: 0 10px 30px rgba(18,59,93,.06); }
.custom-button { border: 0; border-radius: 999px; background: var(--dl-blue); color: var(--dl-white); }
.custom-input, .form-control { border-color: var(--dl-line); border-radius: 12px; }
.pagination .page-link { color: var(--dl-navy); border-color: var(--dl-line); }

/* Footer */
.footer-container { margin-top: 0; padding: 0; background: #0e304b; color: rgba(255,255,255,.72); }
.footer-content { padding-top: 60px; padding-bottom: 24px; display: grid; grid-template-columns: 1.15fr 2.3fr .6fr; gap: 55px; }
.footer-intro p { max-width: 310px; margin: 24px 0 0; font-size: 14px; line-height: 1.7; }
.footer-brand { display: flex; align-items: center; gap: 15px; color: var(--dl-white); text-decoration: none; }
.footer-brand:hover { color: var(--dl-white); text-decoration: none; }
.footer-brand img { width: 62px; height: 62px; padding: 5px; border-radius: 14px; background: var(--dl-white); }
.footer-brand span { display: flex; flex-direction: column; }
.footer-brand strong { font-family: Georgia, serif; font-size: 19px; font-weight: 500; }
.footer-brand small { margin-top: 6px; color: rgba(255,255,255,.56); font-size: 11px; }
.footer-nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.footer-nav h2 { margin: 0 0 20px; color: #8fd4f4; font-family: "Roboto", sans-serif; font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.footer-nav ul { margin: 0; padding: 0; list-style: none; }
.footer-nav li + li { margin-top: 11px; }
.footer-nav a { color: rgba(255,255,255,.72); font-size: 13px; line-height: 1.35; text-decoration: none; }
.footer-nav a:hover { color: var(--dl-white); }
.footer-social > span { display: block; margin-bottom: 16px; color: #8fd4f4; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.footer-social > div { display: flex; gap: 9px; }
.footer-social a { width: 39px; height: 39px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; color: var(--dl-white); text-decoration: none; }
.footer-social a:hover { border-color: var(--dl-coral); background: var(--dl-coral); transform: translateY(-2px); }
.footer-bottom { grid-column: 1 / -1; margin-top: 10px; padding-top: 22px; display: flex; justify-content: space-between; gap: 25px; border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom p { margin: 0; font-size: 12px; }
.footer-bottom a { color: rgba(255,255,255,.72); font-size: 12px; text-decoration: none; }

.scroll-bottom-btn { right: 18px; bottom: 18px; left: auto; width: 44px; height: 44px; padding: 0; border: 0; border-radius: 50%; background: var(--dl-navy); color: var(--dl-white); box-shadow: 0 8px 24px rgba(18,59,93,.25); }

.cookie-notice { position: fixed; right: 22px; bottom: 22px; z-index: 1050; width: min(470px, calc(100% - 44px)); padding: 18px 48px 18px 20px; border: 1px solid var(--dl-line); border-radius: 17px; background: var(--dl-white); box-shadow: var(--dl-shadow); }
.cookie-notice p { margin: 0; color: var(--dl-ink-soft); font-size: 12px; line-height: 1.5; }
.cookie-notice .close { position: absolute; top: 10px; right: 12px; }

#questionnaire .modal-content { position: relative; padding: 10px; border: 0; border-radius: 24px; box-shadow: var(--dl-shadow); }
#questionnaire .close-anketa { position: absolute; top: 15px; right: 16px; z-index: 2; border: 0; background: none; color: var(--dl-ink-soft); }
#questionnaire .modal-header, #questionnaire .modal-footer { border: 0; }
#questionnaire .modal-footer { justify-content: flex-start; }
#questionnaire .button--light { border-color: var(--dl-line); background: var(--dl-white); color: var(--dl-ink); }

@media (max-width: 1199.98px) {
    .logo-container { min-width: 250px; }
    .site-header__brand strong { font-size: 18px; }
    .top-nav-container { gap: 14px; }
    .top-nav-container .top-nav-link { font-size: 12px; }
    .footer-content { grid-template-columns: 1fr 2fr; }
    .footer-social { grid-column: 1 / -1; display: flex; align-items: center; gap: 18px; }
    .footer-social > span { margin: 0; }
}

@media (max-width: 991.98px) {
    .site-header__bar p { display: none; }
    .site-header__bar-inner { justify-content: flex-end; }
    .site-header__utility a:first-child { display: none; }
    .site-header__main { padding-top: 12px; padding-bottom: 12px; }
    .navigation-container { height: auto; }
    .logo-container { min-width: 0; }
    .logo-container .logo { width: 50px; height: 50px; }
    .navigation { display: none !important; }
    .open-mobile-menu {
        width: 48px;
        height: 48px;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        border: 0;
        border-radius: 14px;
        background: #eaf3f6;
    }
    .open-mobile-menu span { width: 21px; height: 2px; border-radius: 2px; background: var(--dl-navy); }
    .services-nav { grid-template-columns: repeat(3, 1fr); }
    .mobile-nav {
        position: fixed;
        inset: 0 0 0 auto;
        z-index: 2000;
        width: min(440px, 100%);
        height: 100dvh;
        padding: 24px;
        overflow-y: auto;
        background: var(--dl-paper);
        box-shadow: -20px 0 50px rgba(18,59,93,.18);
        transform: translateX(102%);
        transition: transform .35s ease;
    }
    .mobile-nav.mobile-nav-active { transform: translateX(0); }
    .mobile-nav__head { padding-bottom: 18px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--dl-line); color: var(--dl-navy); font-family: Georgia, serif; font-size: 26px; }
    .close-mobile-menu { position: static; width: 42px; height: 42px; border: 0; border-radius: 50%; background: #eaf3f6; color: var(--dl-navy); }
    .mobile-search-btn { width: 100%; margin: 20px 0 8px; padding: 13px 16px; border: 0; border-radius: 13px; background: var(--dl-navy); color: var(--dl-white); text-align: left; }
    .search-field-mobile { position: relative; display: none; margin-top: 18px; }
    .search-field-mobile.search-field-mobile-active { display: flex; }
    .search-field-mobile input { width: 100%; height: 50px; padding: 0 92px 0 15px; border: 1px solid var(--dl-line); border-radius: 13px; background: var(--dl-white); }
    .search-field-mobile button { position: absolute; top: 5px; right: 5px; width: 40px; height: 40px; border: 0; border-radius: 10px; background: var(--dl-blue); color: white; }
    .search-field-mobile .close-search-mob { right: 48px; background: transparent; color: var(--dl-ink-soft); }
    .mobile-nav .main-links { margin-top: 18px; }
    .mobile-nav .main-links .top-nav-link { width: 100%; margin: 0; padding: 13px 2px; border-bottom: 1px solid var(--dl-line); color: var(--dl-ink); font-size: 16px; font-weight: 700; text-decoration: none; }
    .mobile-nav .secondary-links { margin-top: 22px; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
    .mobile-nav .secondary-links .bottom-nav-link { min-width: 0; margin: 0; padding: 13px; display: flex; flex-direction: column; align-items: flex-start; border-radius: 14px; background: #edf4f5; color: var(--dl-ink); font-size: 12px; font-weight: 700; text-decoration: none; }
    .mobile-nav .secondary-links .bottom-nav-link img { width: 34px !important; height: 34px; margin: 0 0 10px; }
    .home-hero { min-height: 500px; }
    .home-hero__note { display: none; }
    .home-featured .slider { max-width: 800px; }
    .footer-content { grid-template-columns: 1fr; }
    .footer-nav, .footer-social, .footer-bottom { grid-column: 1; }
}

@media (max-width: 767.98px) {
    .site-header__bar { display: none; }
    .site-header__brand small { display: none; }
    .site-header__brand strong { font-size: 17px; }
    .services-nav { margin-right: -15px; margin-left: -15px; padding: 10px 15px 0; display: flex; overflow-x: auto; scrollbar-width: none; }
    .services-nav::-webkit-scrollbar { display: none; }
    .services-nav .bottom-nav-link { min-width: 145px; background: #edf4f5; }
    .home-hero { min-height: 520px; background-position: 58% center; }
    .home-hero__inner { padding-top: 58px; padding-bottom: 58px; }
    .home-hero h1 { font-size: clamp(42px, 12vw, 58px); }
    .home-hero__copy > p { font-size: 17px; }
    .home-featured { padding-top: 52px; }
    .home-featured::before { font-size: 29px; }
    .home-featured .slider { padding: 0 15px; }
    .home-featured .board-border { border-radius: 18px; }
    .home-featured .prev, .home-featured .next { display: none !important; }
    .feedback-invite { margin-top: 48px; }
    .feedback-invite > .row { padding: 32px 20px; border-radius: 24px; }
    .feedback-invite .wrap { padding: 0; flex-direction: column; align-items: stretch; }
    .feedback-invite .wrap a { justify-content: center; }
    .events-section .section-title { font-size: 28px; }
    .footer-content { padding-top: 46px; gap: 38px; }
    .footer-nav { grid-template-columns: 1fr 1fr; }
    .footer-nav section:last-child { grid-column: 1 / -1; }
}

@media (max-width: 479.98px) {
    .site-header__main { padding-top: 9px; padding-bottom: 9px; }
    .logo-container .logo { width: 43px; height: 43px; }
    .site-header__brand strong { font-size: 15px; }
    .open-mobile-menu { width: 43px; height: 43px; }
    .home-hero__actions { align-items: stretch; flex-direction: column; }
    .home-hero__actions .button { width: 100%; }
    .home-hero h1 { font-size: 40px; }
    .footer-nav { grid-template-columns: 1fr; }
    .footer-nav section:last-child { grid-column: auto; }
    .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
