/* =============================================
   МОЙ БИЗНЕС — ДАЛЬНЕГОРСКИЙ ФИЛИАЛ
   app.css — unified design system
   ============================================= */

/* --- Tokens --- */
:root {
    --brand:        #3498db;
    --brand-dark:   #2980b9;
    --brand-btn:    #3498db;
    --brand-btn-dark:    #2980b9;
    --brand-bg:     #ecf0f1;
    --text:         #232830;
    --text-2:       #5c6470;
    --bg:           #f4f4f4;
    --surface:      #ffffff;
    --line:         #e2e6eb;
    --line-strong:  #cdd2d9;
    --shadow-sm:    0 1px 4px rgba(20,25,32,.06);
    --shadow:       0 4px 18px rgba(20,25,32,.09);
    --focus:        rgba(237,83,56,.22);
    --r-sm:  8px;
    --r-md:  12px;
    --r-lg:  16px;
    /* legacy aliases */
    --muted:    #5c6470;
    --radius:   12px;
    --chip-bg:  #E8F6FF;
    --chip-text:#2980b9;
    --bg-soft:  #eeeeee;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; }
html { font-size: 16px; }
html, body { margin: 0; padding: 0; }
body {
    font-family: "Segoe UI", Arial, Helvetica, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}
.is-preloading {
    overflow: hidden;
}
.site-preloader {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(246, 246, 246, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: opacity .3s ease, visibility .3s ease;
}
.site-preloader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.site-preloader__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 16px;
}
.site-preloader__logo {
    max-width: min(280px, 72vw);
    max-height: 84px;
    width: auto;
    height: auto;
    object-fit: contain;
}
.site-preloader__text {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    text-align: center;
}
.site-preloader__spinner {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid #E8F6FF;
    border-top-color: var(--brand);
    animation: preloader-spin .8s linear infinite;
}
@keyframes preloader-spin {
    to { transform: rotate(360deg); }
}
a { color: var(--brand); text-decoration: none; transition: color .14s; }
a:hover { color: var(--brand-dark); }
img { max-width: 100%; display: block; }

/* Focus */
:focus-visible {
    outline: 0;
    box-shadow: 0 0 0 3px var(--focus);
}

/* --- Typography --- */
h1, h2, h3, h4 { letter-spacing: -.012em; color: var(--text); line-height: 1.2; margin-top: 0; }
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); line-height: 1.12; }
h2 { font-size: clamp(1.45rem, 2.6vw, 2rem); line-height: 1.2; }
h3 { font-size: clamp(1.05rem, 1.8vw, 1.3rem); }
p, li, td, th { font-size: 1rem; }

/* --- Container --- */
.container { width: min(1200px, calc(100% - 40px)); margin: 0 auto; }

/* =============================================
   UTILITY BAR
   ============================================= */
.util-bar {
    background: #f8fafc;
    border-bottom: 1px solid var(--line);
    font-size: 13px;
}
.util-bar__inner {
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.util-bar__left,
.util-bar__right {
    display: flex;
    align-items: center;
    gap: 12px;
}
.util-bar__official { color: #4a6070; display: inline-flex; align-items: center; gap: 6px; }
.util-bar__official svg { flex-shrink: 0; }
.util-bar a { color: #3d5470; }
.util-bar__phone { font-weight: 700; color: var(--text); }
.util-bar__acc {
    border: 1px solid var(--line-strong);
    border-radius: 6px;
    background: #fff;
    color: #3d5470;
    padding: 3px 8px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: background .14s;
}
.util-bar__acc:hover { background: #eff2f6; }

/* =============================================
   HEADER
   ============================================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    transition: box-shadow .2s;
}
.site-header.header--scrolled { box-shadow: var(--shadow); }

.header-main {
    display: grid;
    grid-template-columns: minmax(200px, 380px) 1fr auto;
    align-items: center;
    gap: 18px;
    min-height: 80px;
    padding: 8px 0;
}

/* Brand */
.header-brand,
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
    text-decoration: none;
}
.header-brand__logo,
.brand-logo { width: auto; max-width: 360px; max-height: 48px; }
.header-brand__sep { width: 1px; height: 34px; background: var(--line); flex-shrink: 0; }
.header-brand__label { display: flex; flex-direction: column; gap: 2px; }
.header-brand__name,
.brand-text { font-size: 13px; font-weight: 700; color: var(--text); line-height: 1.1; }
.header-brand__sub,
.brand-caption { font-size: 12px; color: var(--text-2); line-height: 1.3; }

/* Right */
.header-right,
.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}
.header-contacts { text-align: right; }
.header-contacts__phone {
    display: block;
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
    white-space: nowrap;
}
.header-contacts__email { font-size: 12.5px; color: var(--text-2); }
.header-contacts__email a { color: var(--brand); }

.header-search-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    min-height: 42px;
    border: 1px solid var(--line-strong);
    border-radius: var(--r-sm);
    background: #fff;
    color: var(--text-2);
    cursor: pointer;
    transition: border-color .14s, color .14s, background .14s;
}
.header-search-btn:hover { border-color: #f0b0a0; color: var(--brand); background: var(--brand-bg); }

.header-link {
    font-size: 14px;
    color: var(--text-2);
    border: 1px solid var(--line-strong);
    border-radius: var(--r-sm);
    padding: 8px 12px;
    white-space: nowrap;
    transition: color .14s, border-color .14s;
}
.header-link:hover { color: var(--text); border-color: #bec5ce; }
.nav-vision-item { display: none; }
.vis-toggle {
    display: inline-flex;
    align-items: center;
    font-family: inherit;
    cursor: pointer;
    background: #fff;
}
.nav-vision-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    padding: 0 11px;
    border: 1px solid var(--line-strong);
    border-radius: var(--r-sm);
    background: #fff;
    color: var(--text);
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    white-space: nowrap;
    transition: background .14s, color .14s, border-color .14s;
}
.nav-vision-toggle:hover {
    background: var(--brand-bg);
    color: var(--brand-dark);
    border-color: #f0b0a0;
}

/* Inline search */
.header-search-wrap {
    border-top: 1px solid var(--line);
    background: #fff;
    padding: 10px 0;
}
.header-search {
    display: grid;
    grid-template-columns: 1fr auto;
    width: min(440px, 100%);
    border: 1px solid var(--line-strong);
    border-radius: var(--r-sm);
    overflow: hidden;
    background: #fff;
}
.header-search input {
    border: 0;
    padding: 10px 12px;
    font-size: 14px;
    min-width: 0;
    color: var(--text);
    font-family: inherit;
}
.header-search input:focus { outline: 0; }
.header-search button {
    border: 0;
    background: var(--brand);
    color: #fff;
    padding: 0 16px;
    cursor: pointer;
    font-family: inherit;
    transition: background .14s;
}
.header-search button:hover { background: var(--brand-dark); }

/* Burger */
.menu-toggle {
    display: none;
    align-items: center;
    gap: 6px;
    border: 1px solid var(--line-strong);
    background: #fff;
    color: var(--text);
    border-radius: var(--r-sm);
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    min-height: 42px;
    font-family: inherit;
}

/* =============================================
   NAV BAR
   ============================================= */
.nav-bar,
.header-nav-wrap {
    background: #fff;
    border-top: 1px solid var(--line);
}
.nav-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 50px;
    gap: 10px;
}
.nav,
.nav-bar__list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 2px;
    list-style: none;
    margin: 0;
    padding: 0;
    min-height: 50px;
}
.nav a,
.nav-bar__list li a {
    display: inline-flex;
    align-items: center;
    height: 36px;
    padding: 0 11px;
    color: var(--text);
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--r-sm);
    white-space: nowrap;
    transition: background .14s, color .14s;
}
.nav a:hover,
.nav-bar__list li a:hover,
.nav a:focus-visible,
.nav-bar__list li a:focus-visible,
.nav a.nav-active,
.nav-bar__list li a.nav-active {
    background: var(--brand-bg);
    color: var(--text);
}
.nav-bar__cta { flex-shrink: 0; }
.nav-bar__cta a {
    display: inline-flex;
    align-items: center;
    height: 34px;
    padding: 0 15px;
    background: var(--brand-btn);
    border: 1px solid var(--brand-btn);
    border-radius: var(--r-sm);
    color: #fff;
    font-size: 13.5px;
    font-weight: 700;
    white-space: nowrap;
    transition: background .14s, border-color .14s;
}
.nav-bar__cta a:hover { background: var(--brand-btn-dark); border-color: var(--brand-btn-dark); color: #fff; }

/* =============================================
   HERO
   ============================================= */
.hero {
    background: linear-gradient(150deg, #E8F6FF 0%, #fff 55%, #F2FAFF 100%);
    border-top: 3px solid var(--brand-btn);
    border-bottom: 1px solid var(--line);
    padding: 56px 0 48px;
}
.hero__inner {
    max-width: 720px;
}
.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 0 0 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: .01em;
}
.hero h1 {
    margin: 0 0 16px;
    font-size: clamp(1.6rem, 4vw, 2.0rem);
    line-height: 1.15;
    color: var(--text);
}
.hero__lead {
    margin: 0;
    color: var(--text-2);
    font-size: 17px;
    line-height: 1.65;
    max-width: 600px;
}
.hero__actions {
    margin-top: 28px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
/* btn-white on a light hero needs a visible border */
.hero .btn-white {
    background: #fff;
    border-color: var(--line-strong);
    color: var(--text);
    box-shadow: 0 1px 4px rgba(0,0,0,.07);
}
.hero .btn-white:hover {
    background: #f4f5f7;
    border-color: #b8c2cc;
}
.hero__quick {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 18px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}
.hero__quick-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--brand-btn);
    text-decoration: none;
    transition: color .14s;
}
.hero__quick-link:hover { color: var(--brand-dark); }

/* =============================================
   SECTIONS
   ============================================= */
.section { padding: 44px 0; }
.section-soft,
.section--alt { background: #f9f9f9; }
.section--tint { background: var(--brand-bg); }

.section-head {
    margin-bottom: 20px;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}
.section h2,
.section-head h2 { margin: 0; }
.section-head a,
.section-head-link {
    color: var(--brand);
    font-size: 14px;
    font-weight: 600;
    flex-shrink: 0;
    white-space: nowrap;
    transition: color .14s;
}
.section-head a:hover,
.section-head-link:hover { color: var(--brand-dark); }

/* =============================================
   CARDS (unified)
   ============================================= */
.card,
.service-card,
.info-card,
.news-item,
.contact-box,
.faq-box {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    padding: 18px;
    transition: box-shadow .18s;
}
.card:hover,
.service-card:hover,
.news-item:hover { box-shadow: var(--shadow); }

.card h3,
.service-card h3,
.info-card h3,
.news-item h3,
.contact-box h2,
.faq-box h2 { margin: 6px 0 8px; }

.card p,
.service-card p,
.info-card p,
.news-item p { margin: 0; color: var(--text-2); font-size: 14.5px; line-height: 1.5; }

/* Support card variant */
.support-card { border-left: 3px solid var(--brand); padding-left: 17px; }
.support-card .badge {margin-bottom: 10px;}
.support-card h3 { font-size: 15px; margin: 0 0 8px; }
.support-card h3 a { color: var(--text); font-weight: 600; }
.support-card h3 a:hover { color: var(--brand); }

/* News card variant */
.news-card {
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
}
.news-card__thumb {
    position: relative;
    height: 180px;
    background: #ebebeb;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c8cdd3;
}
.news-card__thumb img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.news-card__placeholder {
    flex-shrink: 0;
}
.news-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 16px 18px 18px;
    gap: 8px;
}
.news-card__date { font-size: 12px; color: var(--text-2); font-weight: 500; }
.news-card h3 { margin: 0; font-size: 15px; line-height: 1.4; }
.news-card h3 a { color: var(--text); font-weight: 600; }
.news-card h3 a:hover { color: var(--brand); }
.news-card p { margin: 0; font-size: 13.5px; color: var(--text-2); line-height: 1.55; }
.news-card__more { margin-top: auto; padding-top: 4px; font-size: 13px; color: var(--brand); font-weight: 600; }
.news-card__more:hover { color: var(--brand-dark); }

/* =============================================
   CHIPS / BADGES
   ============================================= */
.chip,
.badge,
.s-badge {
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    font-weight: 700;
    border-radius: 999px;
    padding: 3px 10px;
    letter-spacing: .01em;
    white-space: nowrap;
}
.chip,
.badge,
.s-badge { background: var(--chip-bg); color: var(--brand-btn-dark); }
.badge-ok   { background: #ddf4e6; color: #186436; }
.badge-warn { background: #fff1d2; color: #845000; }
.badge-off  { background: #ffe6e6; color: #8b2020; }
.badge-grey { background: #edf0f3; color: #52606e; }
.badge-orange { background: #fde8d8; color: #8a3900; }

/* =============================================
   APPEAL SECTION
   ============================================= */
.section-appeal {
    background: linear-gradient(135deg, #e04832 0%, #c03424 100%);
    padding: 44px 0;
}
.appeal-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
    align-items: start;
}
.section-appeal h2 { color: #fff; }
.section-appeal p  { color: rgba(255,255,255,.8); }
.appeal-list {
    margin: 14px 0 0;
    padding-left: 18px;
    color: rgba(255,255,255,.82);
    display: grid;
    gap: 7px;
}
.appeal-form {
    background: #fff;
    border-radius: var(--r-md);
    padding: 20px;
    display: grid;
    gap: 12px;
}

/* Appeal strip (inline variant) */
.appeal-strip {
    background: linear-gradient(105deg, #3498db 0%, #2980b9 100%);
    padding: 30px 0;
}
.appeal-strip__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.appeal-strip__text h3 { font-size: 20px; font-weight: 700; color: #fff; margin: 0 0 5px; }
.appeal-strip__text p  { color: rgba(255,255,255,.75); font-size: 14px; margin: 0; }
.appeal-strip__actions { display: flex; gap: 10px; flex-wrap: wrap; flex-shrink: 0; }

/* =============================================
   BUTTONS (unified)
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 1px solid transparent;
    border-radius: var(--r-sm);
    padding: 10px 18px;
    font: inherit;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    transition: background .14s, border-color .14s, color .14s;
    min-height: 42px;
    line-height: 1;
}
/* Primary */
.btn-primary,
.btn-orange {
    background: var(--brand-btn);
    border-color: var(--brand-btn);
    color: #fff;
}
.btn-primary:hover,
.btn-orange:hover { background: var(--brand-btn-dark); border-color: var(--brand-btn-dark); color: #fff; }
/* Form submit fallback */
.form button[type="submit"],
.appeal-form button,
.form button:not([class]) {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    background: var(--brand);
    border: 1px solid var(--brand);
    border-radius: var(--r-sm);
    color: #fff;
    padding: 10px 18px;
    font: inherit;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    min-height: 42px;
    transition: background .14s, border-color .14s;
}
.form button[type="submit"]:hover,
.appeal-form button:hover,
.form button:not([class]):hover { background: var(--brand-dark); border-color: var(--brand-dark); }
/* Ghost */
.btn-ghost {
    background: #fff;
    border-color: var(--line-strong);
    color: var(--text);
}
.btn-ghost:hover { background: #f4f5f7; border-color: #bec5ce; }
/* White */
.btn-white {
    background: #fff;
    border-color: rgba(255,255,255,.35);
    color: var(--text);
}
.btn-white:hover { background: #f5f5f5; }
/* Outline */
.btn-outline {
    background: transparent;
    border-color: var(--brand);
    color: var(--brand);
}
.btn-outline:hover { background: var(--brand-bg); }
/* Sizes */
.btn-sm { padding: 7px 13px; font-size: 13px; min-height: 36px; border-radius: calc(var(--r-sm) - 1px); }
.btn-lg { padding: 13px 24px; font-size: 16px; }

/* =============================================
   FORMS (unified)
   ============================================= */
.appeal-form input,
.appeal-form textarea,
.form input:not([type="submit"]):not([type="button"]):not([type="checkbox"]):not([type="radio"]):not(.btn),
.form textarea,
.form select,
.header-search input,
.list-filter input,
.list-filter select {
    width: 100%;
    border: 1px solid var(--line-strong);
    border-radius: var(--r-sm);
    padding: 10px 13px;
    font: inherit;
    font-size: 14.5px;
    color: var(--text);
    background: #fff;
    transition: border-color .14s, box-shadow .14s;
    display: block;
    margin-bottom: 0;
}
.appeal-form input:focus,
.appeal-form textarea:focus,
.form input:focus,
.form textarea:focus,
.form select:focus,
.list-filter input:focus,
.list-filter select:focus {
    outline: 0;
    border-color: #f09080;
    box-shadow: 0 0 0 3px var(--focus);
}
.form input { margin-bottom: 12px; }
.form textarea { margin-bottom: 12px; }
.form select { margin-bottom: 12px; }
.appeal-form textarea,
.form textarea { min-height: 110px; resize: vertical; }
.form select,
.list-filter select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235c6470' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 13px center;
    padding-right: 34px;
}
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 5px; }

.form-hp {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-captcha {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 2px 0 14px;
    padding: 9px 12px;
    border: 1px solid var(--line);
    border-radius: var(--r-sm);
    background: #fff;
    color: var(--text);
    font-size: 14px;
    font-weight: 600;
}

.form-captcha input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: var(--brand);
    cursor: pointer;
}

.form-captcha--policy {
    align-items: flex-start;
    font-size: 13.5px;
    font-weight: 500;
    line-height: 1.45;
}

.form-captcha--policy span a {
    color: var(--brand);
    text-decoration: underline;
}

.form-captcha--policy span a:hover {
    color: var(--brand-dark);
}

/* List filter bar */
.list-filter {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: flex-end;
    margin-bottom: 22px;
    padding: 16px 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-md);
}
.list-filter input,
.list-filter select { margin-bottom: 0; min-width: 160px; }

/* =============================================
   EVENTS
   ============================================= */
.event-list,
.event-list.grid { display: grid; gap: 12px; }
.event-item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    padding: 16px;
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 16px;
    align-items: start;
    transition: box-shadow .18s;
}
.event-item:hover { box-shadow: var(--shadow-sm); }
.event-date {
    font-weight: 700;
    color: var(--brand-dark);
    background: var(--brand-bg);
    border-radius: var(--r-sm);
    padding: 10px 8px;
    text-align: center;
    font-size: 14px;
    line-height: 1.4;
}
.event-place { display: inline-block; margin-top: 7px; color: var(--text-2); font-size: 14px; }

/* Datebox variant */
.event-datebox {
    background: #f4f4f4;
    border-radius: var(--r-sm);
    padding: 6px 4px;
    border: 1px solid var(--line);
    text-align: center;
    min-width: 50px;
}
.event-datebox__day  { font-size: 22px; font-weight: 700; color: var(--brand); line-height: 1; }
.event-datebox__mon  { font-size: 11px; color: var(--text-2); text-transform: uppercase; font-weight: 600; letter-spacing: .04em; margin-top: 2px; }
.event-item__body    { flex: 1; min-width: 0; }
.event-item__title   { font-size: 14px; font-weight: 600; color: var(--text); line-height: 1.35; margin-bottom: 5px; }
.event-item__title a { color: inherit; }
.event-item__title a:hover { color: var(--brand); }
.event-item__meta    { font-size: 12.5px; color: var(--text-2); }

/* =============================================
   FAQ
   ============================================= */
.faq-mini { display: grid; gap: 10px; }
details.faq-item,
.faq-mini details {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    overflow: hidden;
    margin-bottom: 8px;
}
details.faq-item summary,
.faq-mini summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    font-weight: 600;
    font-size: 15px;
    color: var(--text);
    cursor: pointer;
    list-style: none;
    gap: 10px;
    user-select: none;
    transition: background .14s;
}
details.faq-item summary::-webkit-details-marker,
.faq-mini summary::-webkit-details-marker { display: none; }
details.faq-item summary::after,
.faq-mini summary::after {
    content: '';
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18'%3E%3Cpath d='M3.5 6.5l5.5 5.5 5.5-5.5' stroke='%235c6470' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform .2s;
}
details[open] > summary::after { transform: rotate(180deg); }
details.faq-item summary:hover { background: #fafafa; }
details.faq-item .faq-body,
.faq-mini p {
    padding: 14px 18px 18px;
    color: var(--text-2);
    font-size: 14.5px;
    line-height: 1.65;
    border-top: 1px solid var(--line);
    margin: 0;
}

/* =============================================
   GRIDS / LAYOUT HELPERS
   ============================================= */
.grid       { display: grid; gap: 14px; }
.grid-2     { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid-3     { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-4     { grid-template-columns: repeat(4, minmax(0,1fr)); }
.grid-aside { grid-template-columns: 2fr 1fr; align-items: start; }
.g-12 { gap: 12px; }
.g-20 { gap: 20px; }
.g-24 { gap: 24px; }
.cards-grid { display: grid; gap: 14px; }
.cards-3    { grid-template-columns: repeat(3, minmax(0,1fr)); }
.list,
.news-list  { display: grid; gap: 12px; }
.two-col    { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* =============================================
   SUPPORT TILES
   ============================================= */
.support-tiles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.support-tile {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    padding: 20px 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text);
    text-decoration: none;
    transition: border-color .18s, box-shadow .18s, transform .18s;
}
.support-tile:hover {
    border-color: #E8F6FF;
    box-shadow: var(--shadow);
    transform: translateY(-2px);
    color: var(--brand-dark);
}
.support-tile__icon {
    width: 44px;
    height: 44px;
    border-radius: var(--r-sm);
    background: var(--brand-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand);
}
.support-tile__name { font-size: 13px; font-weight: 600; line-height: 1.35; }

/* Partners */
.partners { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.partner-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 14px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-sm);
    color: var(--text);
    font-size: 13px;
    font-weight: 500;
    transition: border-color .14s, color .14s;
}
.partner-link:hover { border-color: #f0b0a0; color: var(--brand-dark); }

.back-to-top {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 151;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    background: var(--brand);
    color: #fff;
    box-shadow: var(--shadow-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    cursor: pointer;
    transition: opacity .2s ease, transform .2s ease, background .14s ease;
}
.back-to-top.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.back-to-top:hover {
    background: var(--brand-dark);
}

/* =============================================
   BREADCRUMBS
   ============================================= */
.breadcrumbs { margin-bottom: 18px; }
.breadcrumbs ol {
    list-style: none;
    margin: 0; padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.breadcrumbs li {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: var(--text-2);
}
.breadcrumbs li + li::before {
    content: '';
    display: inline-block;
    width: 5px; height: 5px;
    border-top: 1.5px solid #a8b4c0;
    border-right: 1.5px solid #a8b4c0;
    transform: rotate(45deg);
    margin: 0 8px;
    flex-shrink: 0;
}
.breadcrumbs li:last-child { color: var(--text); }
.breadcrumbs a { color: var(--brand); }
.breadcrumbs a:hover { color: var(--brand-dark); }

.page-bar {
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 10px 0;
}
.page-bar .breadcrumbs { margin-bottom: 0; }

/* =============================================
   INNER PAGES
   ============================================= */
.inner-wrap { padding: 36px 0 52px; }
.inner-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    padding: 28px 32px;
}
.inner-card .badge {margin-bottom: 10px;}
.inner-card h1 { font-size: 1.65rem; margin: 0 0 8px; }
.inner-card .post-date { font-size: 13px; color: var(--text-2); margin-bottom: 16px; font-weight: 500; }
.inner-card p { color: var(--text-2); line-height: 1.7; }

/* Steps */
.steps { counter-reset: step; display: grid; gap: 10px; }
.step {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    padding: 14px 16px 14px 58px;
    position: relative;
    font-size: 14.5px;
}
.step::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: 14px; top: 50%;
    transform: translateY(-50%);
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--brand);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
}

.db-prose {
    margin: 0;
    color: var(--text);
    font-size: 15px;
    line-height: 1.72;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.db-prose p {
    margin: 0 0 12px;
}

.db-prose strong,
.db-prose b {
    font-weight: 700;
    color: inherit;
}

.db-prose--content {
    margin-top: 8px;
}

.db-prose--top-gap {
    margin-top: 10px;
}

.db-prose--lead {
    margin: 0 0 20px;
    font-size: 16px;
    color: var(--muted);
    line-height: 1.65;
}

.db-prose--excerpt {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
}

.db-prose--faq {
    margin: 0;
    font-size: 14.5px;
    line-height: 1.62;
    color: var(--text-2);
}

.db-prose--requisites {
    margin: 0;
    font-size: 16px;
    line-height: 1.68;
    color: var(--text);
    letter-spacing: .01em;
    word-break: break-word;
}

.db-prose--requisites p,
.db-prose--requisites li {
    margin: 0 0 12px;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
}

.db-prose--requisites ul,
.db-prose--requisites ol {
    margin: 0 0 12px;
    padding-left: 20px;
}

.db-prose--requisites li {
    margin-bottom: 8px;
}

.db-prose--requisites p:last-child,
.db-prose--requisites li:last-child {
    margin-bottom: 0;
}

.db-prose--requisites p:empty {
    display: none;
}

.db-prose--requisites a {
    color: var(--brand);
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

.db-prose--requisites strong,
.db-prose--requisites b {
    color: var(--navy);
    font-weight: 700;
}

.db-prose--doc {
    margin-top: 10px;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
}

.about-docs {
    display: grid;
    gap: 10px;
}

.about-year-reports {
    display: grid;
    gap: 16px;
}

.about-year-pager {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 8px;
}

.about-year-pager__years {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.about-year-pager__year,
.about-year-pager__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 12px;
    border: 1px solid var(--line-strong);
    border-radius: 10px;
    background: #fff;
    color: var(--text);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: border-color .14s, background .14s, color .14s;
}

.about-year-pager__year:hover,
.about-year-pager__arrow:hover {
    border-color: #E8F6FF;
    background: var(--brand-bg);
    color: var(--brand-dark);
}

.about-year-pager__year.is-active {
    background: var(--brand);
    border-color: var(--brand);
    color: #fff;
}

.about-year-pager__arrow.is-disabled {
    pointer-events: none;
    opacity: .45;
}

.about-year-group {
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fbfcfd;
}

.about-year-group__title {
    margin: 0 0 10px;
    font-size: 14px;
    font-weight: 800;
    color: var(--text);
}

.about-doc {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    text-decoration: none;
    color: var(--text);
    transition: border-color .16s, box-shadow .16s, transform .16s;
}

.about-doc:hover {
    border-color: #E8F6FF;
    box-shadow: var(--shadow-sm);
    transform: translateY(-1px);
    color: var(--text);
}

.about-doc__icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #eef2f7;
    color: #4f5f75;
    flex-shrink: 0;
}

.about-doc__body {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.about-doc__title {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.35;
    word-break: break-word;
}

.about-doc__meta {
    font-size: 12px;
    color: var(--muted);
    margin-top: 2px;
}

.about-doc__arrow {
    color: #8b97a6;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    flex-shrink: 0;
}

.about-doc--pdf .about-doc__icon {
    background: #E8F6FF;
    color: #2980b9;
}

.about-doc--doc .about-doc__icon {
    background: #eaf1ff;
    color: #3357a8;
}

.about-doc--xls .about-doc__icon {
    background: #e9f7ee;
    color: #2e8a50;
}

.content-media {
    margin-top: 22px;
}

.content-media__title {
    margin: 0 0 10px;
    font-size: 16px;
    color: var(--text);
}

.content-media__list {
    display: grid;
    gap: 8px;
}

.content-media__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
    padding: 10px 12px;
    color: var(--text);
}

.content-media__item:hover {
    border-color: #E8F6FF;
    color: var(--brand-dark);
}

.content-media__name {
    font-weight: 600;
}

.content-media__meta {
    font-size: 12px;
    color: var(--muted);
    flex-shrink: 0;
}

.content-media-video-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.content-media-video {
    margin: 0;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
    padding: 8px;
}

.content-media-video video {
    width: 100%;
    border-radius: 8px;
    background: #000;
    display: block;
}

.content-media-video figcaption {
    margin-top: 6px;
    font-size: 13px;
    color: var(--text-2);
}

.content-media-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.content-media-gallery__item {
    display: block;
    border: 1px solid var(--line);
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}

.content-media-gallery__item img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}

body.has-lightbox {
    overflow: hidden;
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 250;
}

.gallery-lightbox[hidden] {
    display: none;
}

.gallery-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .78);
}

.gallery-lightbox__dialog {
    position: absolute;
    inset: 24px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
}

.gallery-lightbox__figure {
    margin: 0;
    width: 100%;
    max-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.gallery-lightbox__image {
    max-width: 100%;
    max-height: calc(100vh - 140px);
    width: auto;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .35);
}

.gallery-lightbox__caption {
    color: #fff;
    font-size: 14px;
    text-align: center;
}

.gallery-lightbox__close {
    position: absolute;
    top: -4px;
    right: 0;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, .14);
    color: #fff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.gallery-lightbox__nav {
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, .14);
    color: #fff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.gallery-lightbox__close:hover,
.gallery-lightbox__nav:hover {
    background: rgba(255, 255, 255, .24);
}

/* Contact rows */
.contact-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14.5px;
    margin-bottom: 12px;
}

.requisites-card {
    margin-top: 14px;
    padding: 18px 18px 16px;
    border: 1px solid var(--line-soft);
    border-radius: 14px;
    background:
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: 0 10px 28px rgba(21, 41, 74, .06);
}

.requisites-card__title {
    margin: 0 0 12px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--navy);
}

.requisites-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.requisites-list__item {
    padding: 10px 12px;
    border: 1px solid var(--line-soft);
    border-radius: 10px;
    background: #fff;
    color: var(--text);
    font-size: 15px;
    line-height: 1.45;
    word-break: break-word;
}
.contact-socials {
    margin-top: 14px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.contact-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 1px solid var(--line-strong);
    border-radius: 50%;
    background: #fff;
    color: var(--text);
    font-size: 16px;
    transition: border-color .14s, color .14s, background .14s;
}
.contact-social:hover {
    border-color: #f0b0a0;
    color: var(--brand-dark);
    background: var(--brand-bg);
}
.contact-social i {
    line-height: 1;
}
.map-placeholder {
    background: #f4f4f4;
    border: 1px solid var(--line);
    border-radius: var(--r-sm);
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-2);
    font-size: 13px;
    margin-top: 14px;
}

/* =============================================
   FLASH MESSAGES
   ============================================= */
.flash-ok  { background: #e5f7ed; color: #176436; border: 1px solid #b4e2c4; padding: 12px 16px; border-radius: var(--r-sm); margin-bottom: 14px; font-size: 14px; }
.flash-err { background: #fce8e8; color: #872020; border: 1px solid #f0bebe; padding: 12px 16px; border-radius: var(--r-sm); margin-bottom: 14px; font-size: 14px; }

/* =============================================
   PAGINATION
   ============================================= */
.pagination {
    margin-top: 18px;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    align-items: center;
}
.pagination a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border: 1px solid var(--line-strong);
    border-radius: var(--r-sm);
    background: #fff;
    color: var(--text);
    font-size: 14px;
    transition: background .14s, border-color .14s;
}
.pagination a:hover { background: #f4f5f7; border-color: #bec5ce; }
.pagination a.active { background: var(--brand); border-color: var(--brand); color: #fff; }

/* =============================================
   TABLE
   ============================================= */
table { width: 100%; border-collapse: collapse; background: #fff; }
th, td { padding: 11px 14px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; font-size: 14px; }
th { background: #fafafa; color: var(--text-2); font-weight: 700; font-size: 12.5px; text-transform: uppercase; letter-spacing: .04em; }
tr:hover td { background: #fef9f8; }
tr:last-child td { border-bottom: 0; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
    margin-top: 48px;
    background: #3d3d3d;
    border-top: 3px solid var(--brand);
    color: #b8bec5;
    padding: 0;
}
.footer-top,
.footer-grid {
    padding: 40px 0 32px;
    display: grid;
    gap: 28px;
    border-bottom: 1px solid rgba(255,255,255,.10);
}
.footer-top  { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; }
.footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
.footer-brand { display: flex; flex-direction: column; gap: 8px; }
.footer-brand__name { color: #f0f0f0; font-weight: 700; font-size: 16px; }
.footer-brand__sub  { color: #a0a8b0; font-size: 14px; line-height: 1.55; }
.footer-col h4,
.footer-title {
    margin: 0 0 12px;
    font-size: 11.5px;
    font-weight: 700;
    color: #f0f0f0;
    text-transform: uppercase;
    letter-spacing: .07em;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 7px; }
.footer-col a:not(.btn),
.footer-links a:not(.btn),
.footer-contacts a:not(.btn) { color: #a8b0b8; font-size: 13.5px; transition: color .14s; }
.footer-col a:not(.btn):hover,
.footer-links a:not(.btn):hover,
.footer-contacts a:not(.btn):hover { color: #333; }
.footer-links { display: flex; flex-direction: column; gap: 6px; }
.footer-contacts { display: flex; flex-direction: column; gap: 8px; }
.footer-contacts__phone { font-weight: 700; color: #f0f0f0; font-size: 17px; }
.footer-grid p { margin: 0; color: #a0a8b0; font-size: 14px; }
.footer-bottom {
    padding: 16px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}
.footer-bottom__copy { color: #787e85; font-size: 12.5px; }
.footer-bottom__links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-bottom__links a { color: #787e85; font-size: 12.5px; }
.footer-bottom__links a:hover { color: #c8cdd2; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1160px) {
    .header-main { grid-template-columns: 1fr auto; gap: 14px; }
    .header-contacts { display: none; }
    .vis-toggle { display: none; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .support-tiles { grid-template-columns: repeat(3, 1fr); }
    .nav-vision-item { display: inline-flex; }
}

@media (max-width: 960px) {
    .cards-3, .grid-3, .grid-2, .grid-4,
    .two-col, .appeal-grid, .hero-grid,
    .footer-grid { grid-template-columns: 1fr; }
    .grid-aside { grid-template-columns: 1fr; }
    .event-item { grid-template-columns: 1fr; }
    .header-main { min-height: 70px; }
    .section { padding: 36px 0; }
    .support-tiles { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .appeal-strip__inner { flex-direction: column; gap: 16px; }
    .content-media-video-grid { grid-template-columns: 1fr; }
    .content-media-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
    body { line-height: 1.5; }
    .container { width: min(1200px, calc(100% - 28px)); }

    .util-bar__right { display: none; }

    .header-main { grid-template-columns: 1fr auto; min-height: 64px; padding: 6px 0; gap: 10px; }
    .header-contacts, .header-search-btn { display: none; }
    .menu-toggle { display: inline-flex; }

    .nav-bar { display: none; }
    .nav-bar.open { display: block; }
    .nav-bar__inner { flex-direction: column; align-items: stretch; min-height: 0; padding: 6px 0 12px; gap: 3px; }
    .nav-bar__list { flex-direction: column; align-items: stretch; min-height: 0; gap: 3px; }
    .nav-bar__list li a {
        border: 1px solid var(--line);
        border-radius: var(--r-sm);
        background: #fff;
        padding: 11px 14px;
        display: flex;
    }
    .nav-vision-item { display: flex; }
    .nav-vision-toggle {
        width: 100%;
        justify-content: flex-start;
        height: auto;
        min-height: 42px;
        padding: 11px 14px;
        border: 1px solid var(--line);
        border-radius: var(--r-sm);
    }
    .nav-bar__cta { display: none; }

    .hero { padding: 28px 0 24px; }
    .hero__lead { font-size: 15.5px; }
    .hero__actions { flex-direction: column; align-items: stretch; }
    .hero__actions .btn { width: 100%; justify-content: center; }
    .hero__quick { gap: 8px 14px; }

    .section { padding: 28px 0; }
    .section-head { flex-wrap: wrap; }

    .inner-card { padding: 18px 16px; }

    .appeal-strip__actions { flex-direction: column; width: 100%; }
    .appeal-strip__actions .btn { width: 100%; justify-content: center; }

    .footer-top { grid-template-columns: 1fr; gap: 22px; padding: 28px 0 20px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; gap: 6px; }

    .list-filter { flex-direction: column; }
    .list-filter input, .list-filter select { max-width: 100%; min-width: 0; width: 100%; }

    .gallery-lightbox__dialog {
        inset: 12px;
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr auto;
        justify-items: center;
    }

    .gallery-lightbox__close {
        position: static;
        justify-self: end;
    }

    .gallery-lightbox__figure {
        width: 100%;
    }

    .gallery-lightbox__image {
        max-height: calc(100vh - 190px);
    }

    .gallery-lightbox__nav {
        width: 52px;
        height: 38px;
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .support-tiles { grid-template-columns: repeat(2, 1fr); }
    .hero h1 { font-size: 1.65rem; }
    .back-to-top { right: 12px; bottom: 12px; width: 40px; height: 40px; }
    .content-media-gallery { grid-template-columns: 1fr; }
}

.yandex-map {
    margin-top: 30px;
}

.yandex-map iframe {
    border-radius: 10px;
}

/* =============================================
   ACCESSIBLE MODE
   ============================================= */
body.accessible-mode {
    background: #fff;
    color: #000;
    font-size: 19px;
    line-height: 1.75;
}
body.accessible-mode .site-preloader {
    display: none !important;
}
body.accessible-mode .nav-vision-toggle,
body.accessible-mode .vis-toggle {
    background: #000;
    border-color: #000;
    color: #fff;
}
body.accessible-mode .site-header,
body.accessible-mode .inner-card,
body.accessible-mode .card,
body.accessible-mode .support-tile,
body.accessible-mode .faq-item,
body.accessible-mode .news-card,
body.accessible-mode .event-item,
body.accessible-mode .footer-top,
body.accessible-mode .footer-bottom {
    background: #fff !important;
    color: #000 !important;
    border-color: #000 !important;
    box-shadow: none !important;
}
body.accessible-mode .section--alt,
body.accessible-mode .section--stripe,
body.accessible-mode .hero,
body.accessible-mode .appeal-strip {
    background: #fff !important;
}
body.accessible-mode h1,
body.accessible-mode h2,
body.accessible-mode h3,
body.accessible-mode h4,
body.accessible-mode p,
body.accessible-mode li,
body.accessible-mode span,
body.accessible-mode label,
body.accessible-mode .badge,
body.accessible-mode .hero__lead,
body.accessible-mode .header-brand__sub,
body.accessible-mode .footer-brand__sub {
    color: #000 !important;
}
body.accessible-mode h1 { font-size: clamp(2.2rem, 4.4vw, 3.3rem); }
body.accessible-mode h2 { font-size: clamp(1.85rem, 3.1vw, 2.5rem); }
body.accessible-mode a {
    color: #000 !important;
    text-decoration: underline;
    text-underline-offset: .15em;
}
body.accessible-mode .btn,
body.accessible-mode button,
body.accessible-mode input,
body.accessible-mode textarea,
body.accessible-mode select {
    font-size: 1.05em;
    border: 2px solid #000 !important;
    background: #fff !important;
    color: #000 !important;
}
body.accessible-mode .btn.btn-orange,
body.accessible-mode .btn.btn-primary {
    background: #000 !important;
    color: #fff !important;
}
body.accessible-mode .contact-social {
    border: 2px solid #000 !important;
}
body.accessible-mode :focus-visible {
    outline: 3px solid #000;
    outline-offset: 2px;
    box-shadow: none;
}
