/* =============================================================================
   Front-end styles (thechcom)
   Порядок: переменные → шрифты → база → лейаут → хедер (сверху вниз) → контент → Gutenberg → медиа в конце
   ============================================================================= */

/* -----------------------------------------------------------------------------
   1. Переменные
   ----------------------------------------------------------------------------- */
:root {
	--color-text: #111111;
	--color-muted: rgba(17, 17, 17, 0.7);
	--color-border: rgba(17, 17, 17, 0.12);
	--color-link: #0b5fff;
	--container-max: 1300px;
	--font-family-base: 'Albert Sans', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
}

/* -----------------------------------------------------------------------------
   2. Подключение шрифтов
   ----------------------------------------------------------------------------- */
@font-face {
	font-family: 'Albert Sans';
	font-style: normal;
	font-weight: 100 900;
	font-display: swap;
	src: url('../fonts/albert-sans/AlbertSans-latin.woff2') format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
	font-family: 'Albert Sans';
	font-style: normal;
	font-weight: 100 900;
	font-display: swap;
	src: url('../fonts/albert-sans/AlbertSans-latin-ext.woff2') format('woff2');
	unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

body.has-scroll-reveal [data-scroll-reveal] {
	opacity: 0;
	transform: translate3d(0, 32px, 0);
	transition:
		opacity 0.8s ease,
		transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
	transition-delay: var(--scroll-reveal-delay, 0ms);
	will-change: opacity, transform;
}

body.has-scroll-reveal [data-scroll-reveal].is-visible {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
	body.has-scroll-reveal [data-scroll-reveal] {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

/* -----------------------------------------------------------------------------
   3. Базовая типографика и ссылки
   ----------------------------------------------------------------------------- */
html {
	color: var(--color-text);
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	font-family: var(--font-family-base);
	font-size: 16px;
	line-height: 1.6;
	font-weight: 400;
	background: #ffffff;
	overflow-x: hidden;
}

body.menu-open {
	overflow: hidden;
}

body * {
	box-sizing: border-box;
}

a {
	color: var(--color-link);
	text-decoration: none;
	transition: all 0.2s ease;
}

a:hover {
	text-decoration: underline;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	line-height: 1.25;
	margin: 0 0 0.6rem 0;
	font-weight: 600;
}

p {
	margin: 0 0 1rem 0;
	color: var(--color-text);
}

strong,
b {
	font-weight: 700;
}

/* -----------------------------------------------------------------------------
   4. Общие элементы секций
   ----------------------------------------------------------------------------- */
.site-main {
	padding-bottom: 400px;
}

   .section-eyebrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	margin-bottom: 20px;
	color: #ff5a00;
	font-family: var(--font-family-base);
	font-size: 20px;
	font-weight: 700;
	text-align: center;
	text-transform: uppercase;
}

.section-eyebrow__icon {
	width: 18px;
	height: 20px;
	display: block;
	flex: 0 0 18px;
	object-fit: contain;
}

.section-title {
	max-width: 760px;
	margin: 0 auto 50px;
	color: #262626;
	font-family: var(--font-family-base);
	font-size: 42px;
	line-height: 46px;
	font-weight: 700;
	text-align: center;
	text-transform: uppercase;
}

.section-title b {
	color: #FF5000;
}


/* -----------------------------------------------------------------------------
   5. Общие кнопки
   ----------------------------------------------------------------------------- */
.button-primary {
	--button-arc-left: calc(77% - 2px);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: relative;
	isolation: isolate;
	overflow: visible;
	padding: 17px 26px;
	border-radius: 133.33px;
	background: #ff5a00;
	color: #ffffff;
	font-family: var(--font-family-base);
	font-size: 18px;
	font-weight: 500;
	line-height: 24px;
	text-align: center;
	text-decoration: none;
	transition: background-color 0.2s ease;
}

.button-primary span {
	position: relative;
	z-index: 2;
	font-weight: 500;
	font-size: 18px;
}

.button-primary:hover,
.button-primary:focus-visible {
	color: #ffffff;
	text-decoration: none;
	background: #ff5a00;
}

.button-primary--arc::after {
	content: '';
	position: absolute;
	top: 50%;
	right: -10px;
	width: 41px;
	height: 81px;
	background: url('../media/button-arc.svg') left center / 41px 81px no-repeat;
	transform: translateY(-50%);
	clip-path: inset(0 0 0 100%);
	transition:
		clip-path 0.32s ease,
		filter 0.28s ease;
	pointer-events: none;
	z-index: 1;
	will-change: clip-path;
	filter: drop-shadow(0 0 6px rgba(255, 80, 0, 0.18));
}

.button-primary--arc:hover::after,
.button-primary--arc:focus-visible::after {
	clip-path: inset(0 0 0 0);
	filter: drop-shadow(0 0 8px rgba(255, 80, 0, 0.28));
}

button.button-primary {
	border: 0;
	cursor: pointer;
	appearance: none;
}

.button-primary--dark {
	background: #262626;
}

.button-primary--dark:hover,
.button-primary--dark:focus-visible {
	background: #262626;
	color: #ffffff;
}

.button-primary--dark.button-primary--arc::after {
	filter: brightness(0) saturate(100%);
}

.button-primary--dark.button-primary--arc:hover::after,
.button-primary--dark.button-primary--arc:focus-visible::after {
	clip-path: inset(0 0 0 0);
	filter: brightness(0) saturate(100%) drop-shadow(0 0 6px rgba(0, 0, 0, 0.22));
}

/* -----------------------------------------------------------------------------
   6. Лейаут: контейнер, футер
   ----------------------------------------------------------------------------- */
.container {
	max-width: var(--container-max);
	margin: 0 auto;
	padding-left: 16px;
	padding-right: 16px;
}

/* Хлебные крошки из шорткода [thechcom_breadcrumbs] — без фона, в сетке .container */
.thechcom-breadcrumbs-bar {
	position: relative;
	z-index: 0;
	width: 100%;
	box-sizing: border-box;
}

.thechcom-breadcrumbs-bar .container {
	padding-top: 30px;
}

.thechcom-breadcrumbs-bar .breadcrumbs {
	margin: 0;
}

.thechcom-breadcrumbs-bar .breadcrumbs__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0;
	margin: 0;
	padding: 0;
	padding-left: 0;
	list-style: none;
	list-style-type: none;
	font-family: var(--font-family-base);
	font-size: 16px;
	font-weight: 500;
	font-style: normal;
	line-height: 1;
	letter-spacing: 0;
	color: rgba(38, 38, 38, 1);
}

.thechcom-breadcrumbs-bar .breadcrumbs__item {
	display: inline-flex;
	align-items: center;
	margin: 0;
	padding: 0;
	list-style: none;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	letter-spacing: inherit;
}

.thechcom-breadcrumbs-bar .breadcrumbs__item:not(:last-child)::after {
	content: ' / ';
	white-space: pre;
	color: rgba(38, 38, 38, 0.45);
	pointer-events: none;
	font-weight: 500;
}

.thechcom-breadcrumbs-bar .breadcrumbs__link {
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	letter-spacing: inherit;
	color: rgba(38, 38, 38, 1);
	text-decoration: none;
	transition:
		color 0.2s ease,
		opacity 0.2s ease;
}

.thechcom-breadcrumbs-bar .breadcrumbs__link:hover,
.thechcom-breadcrumbs-bar .breadcrumbs__link:focus-visible {
	color: rgba(38, 38, 38, 1);
	text-decoration: underline;
}

.thechcom-breadcrumbs-bar .breadcrumbs__text {
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	letter-spacing: inherit;
	color: inherit;
}

.site-footer {
	position: relative;
	background: #121212;
}

.site-footer__contact-wrap {
	position: relative;
	z-index: 3;
	height: 0;
}

.site-footer__contact-card {
	position: absolute;
	top: -300px;
	left: 50%;
	z-index: 3;
	width: calc(100% - 32px);
	max-width: 860px;
	margin: 0;
	padding: 38px 42px 34px;
	background: #ffffff;
	box-shadow: 0 32px 80px rgba(17, 17, 17, 0.14);
	transform: translateX(-50%);
	border-radius: 50px;
}

.site-footer__contact-header {
	margin-bottom: 28px;
}

.site-footer__contact-title {
	margin: 0 0 22px;
	color: #262626;
	font-family: var(--font-family-base);
	font-size: 28px;
	font-weight: 700;
	line-height: 1.1;
	text-transform: uppercase;
}

.site-footer__contact-title span {
	color: #ff5a00;
}

.site-footer__contact-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px 24px;
}

.site-footer__contact-item {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: #262626;
	font-family: var(--font-family-base);
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
}

.site-footer__contact-item:hover,
.site-footer__contact-item:focus-visible {
	color: #ff5a00;
	text-decoration: none;
}

.site-footer__contact-icon {
	width: 16px;
	height: 16px;
	flex: 0 0 16px;
	object-fit: contain;
}

.site-footer__form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px 18px;
}

.site-footer__field {
	position: relative;
}

.site-footer__field--full {
	margin-top: 16px;
}

.site-footer__label {
	display: inline-block;
	margin-bottom: 10px;
	color: #262626;
	font-family: var(--font-family-base);
	font-size: 20px;
	font-weight: 500;
	line-height: 1.2;
}

.site-footer__input {
	width: 100%;
	min-height: 72px;
	padding: 0 58px 0 18px;
	border: 1px solid transparent;
	border-radius: 30px;
	background: #f3f4f5;
	color: #262626;
	font-family: var(--font-family-base);
	font-size: 18px;
	font-weight: 400;
	line-height: 1.25;
	outline: none;
	transition:
		border-color 0.2s ease,
		background-color 0.2s ease,
		box-shadow 0.2s ease;
}

.site-footer__input::placeholder {
	color: rgba(38, 38, 38, 0.28);
}

.site-footer__input:focus {
	border-color: rgba(255, 80, 0, 0.45);
	box-shadow: 0 0 0 3px rgba(255, 80, 0, 0.08);
}

.site-footer__input--textarea {
	min-height: 116px;
	padding-top: 20px;
	padding-bottom: 20px;
	resize: vertical;
}

.site-footer__field.is-invalid .site-footer__input {
	border-color: #ff3b30;
	background: #ffffff;
}

.site-footer__field::after {
	content: '';
	position: absolute;
	top: 53px;
	right: 20px;
	width: 24px;
	height: 24px;
	opacity: 0;
	transform: scale(0.95);
	transition:
		opacity 0.2s ease,
		transform 0.2s ease;
	background: no-repeat center / contain;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 3.5L21 20H3L12 3.5Z' fill='%23FF3B30'/%3E%3Cpath d='M12 9V13.5' stroke='white' stroke-width='1.8' stroke-linecap='round'/%3E%3Ccircle cx='12' cy='17' r='1' fill='white'/%3E%3C/svg%3E");
}

.site-footer__field--full::after {
	top: 56px;
}

.site-footer__field.is-invalid::after {
	opacity: 1;
	transform: scale(1);
}

.site-footer__error {
	min-height: 18px;
	margin: 6px 0 0;
	color: #ff3b30;
	font-family: var(--font-family-base);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.25;
	display: none;
}

.site-footer__submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 62px;
	margin-top: 16px;
	padding: 16px 24px;
	border: 0;
	border-radius: 40px;
	background: #ff5a00;
	color: #ffffff;
	font-family: var(--font-family-base);
	font-size: 18px;
	font-weight: 600;
	line-height: 1.25;
	cursor: pointer;
	transition:
		background-color 0.2s ease,
		opacity 0.2s ease;
}

.site-footer__submit:hover,
.site-footer__submit:focus-visible {
	background: #ff5000;
	color: #ffffff;
	text-decoration: none;
}

.site-footer__submit:disabled {
	opacity: 0.7;
	cursor: wait;
}

.site-footer__status {
	min-height: 22px;
	margin: 12px 0 0;
	font-family: var(--font-family-base);
	font-size: 15px;
	font-weight: 500;
	line-height: 1.35;
}

.site-footer__status.is-success {
	color: #1f8f4d;
}

.site-footer__status.is-error {
	color: #ff3b30;
}

.site-footer__main {
	padding: 565px 0 34px;
	background: #121212;
}

.site-footer__main-inner {
	display: grid;
	grid-template-columns: minmax(0, 360px) minmax(0, 1fr);
	align-items: end;
	gap: 40px;
}

.site-footer__brand {
	max-width: 360px;
}

.site-footer__logo {
	margin-bottom: 18px;
}

.site-footer__logo-link,
.site-footer__brand-fallback {
	display: inline-flex;
	align-items: center;
	color: #ffffff;
	text-decoration: none;
}

.site-footer__logo img {
	display: block;
	max-width: 170px;
	height: auto;
}

.site-footer__brand-fallback {
	font-size: 28px;
	font-weight: 700;
	text-transform: uppercase;
}

.site-footer__desc,
.site-footer__desc p {
	color: rgba(255, 255, 255, 0.32);
	font-family: var(--font-family-base);
	font-size: 12px;
	font-weight: 400;
	line-height: 1.45;
}

.site-footer__desc p:last-child {
	margin-bottom: 0;
}

.site-footer__copyright {
	margin-top: 18px;
	color: rgba(255, 255, 255, 0.72);
	font-family: var(--font-family-base);
	font-size: 12px;
	font-weight: 400;
	line-height: 1.4;
	text-transform: uppercase;
}

.site-footer__links {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	justify-content: flex-end;
	gap: 20px;
}

.site-footer__nav {
	width: 100%;
}

.site-footer__menu {
	display: flex;
	justify-content: flex-end;
	flex-wrap: wrap;
	gap: 16px 24px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-footer__menu .site-nav__item {
	display: flex;
	align-items: center;
}

.site-footer__menu .site-nav__link {
	color: #ffffff;
	font-family: var(--font-family-base);
	font-size: 14px;
	font-weight: 600;
	line-height: 1.3;
	text-decoration: none;
}

.site-footer__menu .site-nav__link:hover,
.site-footer__menu .site-nav__link:focus-visible {
	color: #ff5a00;
	text-decoration: none;
}

.site-footer__sub-menu {
	display: flex;
	justify-content: flex-end;
	flex-wrap: wrap;
	gap: 12px 24px;
}

.site-footer__sub-link {
	color: rgba(255, 255, 255, 0.52);
	font-family: var(--font-family-base);
	font-size: 12px;
	font-weight: 400;
	line-height: 1.35;
	text-decoration: none;
}

.site-footer__sub-link:hover,
.site-footer__sub-link:focus-visible {
	color: #ffffff;
	text-decoration: none;
}

.site-footer__social {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 14px;
}

.site-footer__social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	opacity: 0.85;
}

.site-footer__social-link:hover,
.site-footer__social-link:focus-visible {
	opacity: 1;
}

.site-footer__social-link img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/* -----------------------------------------------------------------------------
   7. Хедер — чёрная полоска (topbar)
   ----------------------------------------------------------------------------- */
.topbar {
	background: #262626;
	color: #ffffff;
}

.topbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 4px;
	padding-bottom: 4px;
	gap: 16px;
}

.topbar__social,
.topbar__contacts {
	display: flex;
	align-items: center;
	gap: 18px;
	flex-wrap: wrap;
}

.topbar__contacts {
	font-family: var(--font-family-base);
	font-weight: 600;
	font-style: normal;
	font-size: 16px;
}

.topbar__social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	text-decoration: none;
}

.topbar__contact-item {
	display: inline-flex;
	align-items: center;
	gap: 15px;
	color: #ffffff;
	text-decoration: none;
}

.topbar__contacts a.topbar__contact-item {
	text-decoration: underline;
	text-decoration-style: solid;
	text-underline-offset: 0;
}

.topbar__icon {
	width: 16px;
	height: 16px;
	display: block;
	object-fit: contain;
}

.topbar__contact-text {
	display: inline-block;
	font-weight: 600;
	font-size: 16px;

}

/* -----------------------------------------------------------------------------
   6. Хедер — белая полоса (лого + меню), макет ~1440×70
   ----------------------------------------------------------------------------- */
.site-header {
	background: #ffffff;
	position: relative;
	z-index: 50;
}

.site-header__inner {
	max-width: var(--container-max);
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 70px;
}

.site-header__panel {
	display: flex;
	align-items: center;
	gap: 24px;
	margin-left: auto;
}

/* Переключатель языков (Polylang) */
.lang-switcher {
	flex-shrink: 0;
	position: relative;
	z-index: 2;
}

.lang-switcher__dropdown {
	position: relative;
}

.lang-switcher__summary {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	list-style: none;
	cursor: pointer;
	font-family: var(--font-family-base);
	font-weight: 600;
	font-size: 16px;
	line-height: 19px;
	color: #262626;
	user-select: none;
}

.lang-switcher__summary::-webkit-details-marker {
	display: none;
}

.lang-switcher__caret {
	display: inline-block;
	width: 0;
	height: 0;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 5px solid #262626;
	margin-top: 2px;
}

.lang-switcher__dropdown[open] .lang-switcher__caret {
	transform: rotate(180deg);
}

.lang-switcher__list {
	position: absolute;
	top: calc(100% + 8px);
	right: 0;
	min-width: 100%;
	margin: 0;
	padding: 8px 0;
	list-style: none;
	background: #ffffff;
	border: 1px solid var(--color-border);
	border-radius: 4px;
	box-shadow: 0 8px 24px rgba(17, 17, 17, 0.12);
	z-index: 60;
}

.lang-switcher__item {
	margin: 0;
	padding: 0;
}

.lang-switcher__link {
	display: block;
	padding: 8px 16px;
	font-family: var(--font-family-base);
	font-weight: 600;
	font-size: 15px;
	line-height: 1.3;
	color: #262626;
	text-decoration: none;
}

.lang-switcher__link:hover,
.lang-switcher__link:focus-visible {
	color: #ff5000;
	text-decoration: none;
	background: rgba(255, 80, 0, 0.06);
}

.lang-switcher__link--current {
	cursor: default;
	color: #ff5000;
	background: transparent;
}

.site-brand img,
.site-brand .custom-logo-link img {
	max-height: 50px;
	width: auto;
	display: block;
}

/* Навигация: блок меню ~627px по ширине, строка 19px (line-height) */
.site-nav {
	display: flex;
	align-items: center;
	line-height: 19px;
}

.site-header__toggle {
	display: none;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 5px;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.site-header__toggle-line {
	display: block;
	width: 28px;
	height: 3px;
	border-radius: 999px;
	background: #262626;
	transition:
		transform 0.24s ease,
		opacity 0.2s ease,
		background-color 0.2s ease;
}

.site-nav__menu {
	display: flex;
	gap: 24px;
	list-style: none;
	padding: 0;
	margin: 0;
	align-items: center;
	justify-content: flex-start;
	flex-wrap: nowrap;
	width: 627px;
	max-width: 100%;
	line-height: 19px;
}

.site-nav__item {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 0;
	line-height: 19px;
}

.site-header .site-nav a:link,
.site-header .site-nav a:visited,
.site-header .site-nav .site-nav__menu a,
.site-header .site-nav .site-nav__menu .site-nav__link {
	font-family: var(--font-family-base);
	font-weight: 600;
	font-style: normal;
	font-size: 16px;
	line-height: 19px;
	letter-spacing: normal;
	color: #262626;
	text-decoration: none;
	-webkit-font-smoothing: antialiased;
	display: inline-flex;
	align-items: center;
	padding: 0;
	margin: 0;
	vertical-align: middle;
}

.site-header .site-nav .site-nav__menu a:hover,
.site-header .site-nav .site-nav__menu a:focus-visible {
	color: #FF5000;
	text-decoration: none;
}

.site-header .site-nav .site-nav__menu .current-menu-item>a,
.site-header .site-nav .site-nav__menu .current-menu-ancestor>a {
	color: #FF5000;
}

.site-header__mobile-meta {
	display: none;
}

.site-header__mobile-contacts {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.site-header__mobile-contact {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: #ffffff;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.4;
	text-decoration: none;
}

.site-header__mobile-contact:hover,
.site-header__mobile-contact:focus-visible {
	color: #ff5a00;
	text-decoration: none;
}

.site-header__mobile-contact-icon {
	display: block;
	width: 16px;
	height: 16px;
	flex: 0 0 16px;
	object-fit: contain;
}

.site-header__mobile-social {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 14px;
}

.site-header__mobile-social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
}

.site-header__mobile-social-link img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/* -----------------------------------------------------------------------------
   7. Записи / архив
   ----------------------------------------------------------------------------- */
.post__title {
	margin: 0 0 8px 0;
	font-size: 1.6rem;
}

.post__excerpt {
	opacity: 0.9;
}

/* -----------------------------------------------------------------------------
   8. Gutenberg
   ----------------------------------------------------------------------------- */
.site-main .wp-block {
	margin-bottom: 1.25rem;
}

.site-main .wp-block:last-child {
	margin-bottom: 0;
}

.wp-block-image img {
	max-width: 100%;
	height: auto;
}

/* =============================================================================
   9. Адаптив (все медиа — в конце файла)
   ============================================================================= */
@media (max-width: 991px) {
	.site-footer__main {
		padding: 810px 0 34px;
	}
	.topbar {
		display: none;
	}

	.site-header__inner {
		min-height: 50px;
		padding-left: 12px;
		padding-right: 12px;
	}

	.site-brand img,
	.site-brand .custom-logo-link img {
		max-width: 152px;
		max-height: 35px;
	}

	.site-header__toggle {
		display: inline-flex;
		flex: 0 0 36px;
		width: 36px;
		height: 36px;
		gap: 4px;
	}

	.site-header__toggle-line {
		width: 26px;
		height: 2.5px;
	}

	.site-header.is-menu-open .site-header__toggle {
		background: url('../media/header-menu-close.svg') center / 20px 20px no-repeat;
	}

	.site-header.is-menu-open .site-header__toggle-line {
		opacity: 0;
	}

	.site-header__panel {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		display: flex;
		flex-direction: column;
		align-items: stretch;
		isolation: isolate;
		gap: 28px;
		min-height: calc(100vh - 50px);
		max-height: calc(100vh - 50px);
		padding: 28px 16px 120px;
		background-color: rgba(38, 38, 38, 1);
		box-shadow: 0 20px 50px rgba(17, 17, 17, 0.18);
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transform: translateY(-8px);
		transition:
			opacity 0.24s ease,
			transform 0.24s ease,
			visibility 0.24s ease;
		overflow-y: auto;
	}

	.site-header__panel::before {
		content: '';
		position: absolute;
		left: calc(50% - 111px);
		bottom: calc(50% - 110px);
		z-index: 0;
		width: 222px;
		height: 241px;
		background: url('../media/header-menu-logo-bg.svg') center / contain no-repeat;
		pointer-events: none;
	}

	.site-header.is-menu-open .site-header__panel {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: translateY(0);
	}

	.site-header__panel .lang-switcher__summary {
		color: #ffffff;
	}

	.site-header__panel .lang-switcher__caret {
		border-top-color: #ffffff;
	}

	.site-header__panel .lang-switcher__list {
		background: #3a3a3a;
		border-color: rgba(255, 255, 255, 0.18);
	}

	.site-header__panel .lang-switcher__link {
		color: #ffffff;
	}

	.site-header__panel .lang-switcher__link:hover,
	.site-header__panel .lang-switcher__link:focus-visible {
		color: #ff5a00;
		background: rgba(255, 255, 255, 0.06);
	}

	.site-header__panel .lang-switcher__link--current {
		color: #ff5a00;
	}

	.site-nav {
		width: 100%;
		align-items: flex-start;
		position: relative;
		z-index: 1;
	}

	.site-nav__menu {
		width: 100%;
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
		gap: 22px;
	}

	.site-header .site-nav__item {
		width: 100%;
		justify-content: flex-start;
		line-height: 1;
	}

	.site-header .site-nav a:link,
	.site-header .site-nav a:visited,
	.site-header .site-nav .site-nav__menu a,
	.site-header .site-nav .site-nav__menu .site-nav__link {
		color: #ffffff;
		font-size: 18px;
		font-weight: 600;
		line-height: 1;
	}

	.site-header__mobile-meta {
		display: flex;
		position: absolute;
		left: 16px;
		bottom: 90px;
		z-index: 1;
		align-items: center;
		justify-content: flex-start;
		gap: 16px;
		margin-top: 0;
		padding-top: 0;
		border-top: 0;
	}

	.site-header__mobile-contacts {
		display: none;
	}

	.site-header__mobile-social {
		display: flex;
		width: auto;
		justify-content: flex-start;
		gap: 14px;
	}

	.topbar__contact-text {
		font-weight: 600;
		font-size: 12px;

	}

	.site-footer__contact-list,
	.site-footer__form-grid {
		grid-template-columns: 1fr;
	}

	.site-footer__brand,
	.site-footer__links {
		display: contents;
	}

	.site-footer__main-inner {
		grid-template-columns: minmax(0, 1fr) auto;
		align-items: start;
		align-content: start;
		column-gap: 16px;
		row-gap: 20px;
	}

	.site-footer__logo {
		grid-column: 1 / -1;
		grid-row: 1;
		margin-bottom: 0;
	}

	.site-footer__nav {
		grid-column: 1 / -1;
		grid-row: 2;
		width: 100%;
	}

	.site-footer__menu {
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-start;
		align-content: flex-start;
		gap: 12px 16px;
		width: 100%;
	}

	.site-footer__menu .site-nav__item {
		flex: 0 0 auto;
		justify-content: flex-start;
	}

	.site-footer__menu .site-nav__link {
		text-align: left;
	}

	.site-footer__desc {
		grid-column: 1 / -1;
		grid-row: 3;
	}

	.site-footer__desc,
	.site-footer__desc p {
		text-align: justify;
	}

	.site-footer__sub-menu {
		grid-column: 1 / -1;
		grid-row: 4;
		justify-content: flex-start;
		flex-wrap: wrap;
		gap: 12px 20px;
	}

	.site-footer__copyright {
		grid-column: 1 / -1;
		grid-row: 5;
		margin-top: 0;
		text-transform: none;
	}

	.site-footer__main-inner:has(.site-footer__social) .site-footer__copyright {
		grid-column: 1;
		justify-self: start;
	}

	.site-footer__social {
		grid-column: 2;
		grid-row: 5;
		justify-self: end;
		align-self: center;
	}

	.site-footer__main-inner:not(:has(.site-footer__sub-menu)) .site-footer__copyright,
	.site-footer__main-inner:not(:has(.site-footer__sub-menu)) .site-footer__social {
		grid-row: 4;
	}
}

@media (max-width: 767px) {
	.site-main {
		padding-bottom: 575px;
	}
	.button-primary span {
		font-size: 18px;
	}
	.partnership-block__actions {
		width: 100%;
	}
	.section-title {
		max-width: 100% !important;
		text-align: left;
	}
	.container,
	.site-header__inner,
	.site-footer__main-inner {
		max-width: 100%;
		width: 100%;
		padding-left: 10px;
		padding-right: 10px;
	}

	.site-header__panel {
		padding-left: 10px;
		padding-right: 10px;
	}

	.button-primary {
		width: 100%;
		min-height: 48px;
		padding: 0;
	}

	.button-primary--arc::after {
		left: calc(100% - 2px);
		width: 38px;
		height: 74px;
		background-size: 38px 74px;
	}

	.section-eyebrow {
		font-size: 18px;
		justify-content: flex-start;
	}

	.section-title {
		margin-bottom: 28px;
		font-family: var(--font-family-base);
		font-weight: 600;
		font-size: 36px;
		line-height: 46px;
		letter-spacing: 0;
		text-transform: uppercase;
	}

	.site-footer__contact-card {
		top: -530px;
		width: calc(100% - 20px);
		padding: 40px 20px;
		border-radius: 50px;
	}

	.site-footer__contact-header {
		margin-bottom: 22px;
	}

	.site-footer__contact-title {
		margin-bottom: 18px;
		font-size: 36px;
		line-height: 46px;
	}

	.site-footer__contact-list,
	.site-footer__form-grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.site-footer__label {
		font-size: 18px;
	}

	.site-footer__input {
		min-height: 49px;
		padding-left: 20px;
		font-size: 16px;
	}

	.site-footer__input--textarea {
		min-height: 104px;
	}

	.site-footer__field--full {
		margin-top: 14px;
	}

	.site-footer__submit {
		min-height: 56px;
		font-size: 17px;
	}

	.site-footer__main {
        padding-top: 545px;
		padding-bottom: 24px;
	}

	.site-footer__main-inner {
		gap: 24px;
	}

	.site-footer__logo img {
		max-width: 145px;
	}

	.site-footer__links {
		gap: 16px;
	}

	.site-footer__menu {
		gap: 10px 16px;
	}

	.site-footer__menu .site-nav__link {
		font-size: 13px;
	}
}

/* -----------------------------------------------------------------------------
   Shared: Swiper prev/next (orange circle + ring), same markup as specialists-list
   ----------------------------------------------------------------------------- */
.thechcom-swiper-nav {
	--thechcom-swiper-nav-size: 70px;
	position: absolute;
	top: 42%;
	z-index: 5;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: var(--thechcom-swiper-nav-size);
	height: var(--thechcom-swiper-nav-size);
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: transparent;
	color: inherit;
	cursor: pointer;
	pointer-events: auto;
	margin-top: 0;
	transform: translateY(-50%);
	transition:
		opacity 0.2s ease,
		transform 0.22s ease;
}

.thechcom-swiper-nav::after {
	display: none;
}

.thechcom-swiper-nav:hover:not(.swiper-button-disabled),
.thechcom-swiper-nav:focus-visible:not(.swiper-button-disabled) {
	transform: translateY(-50%) scale(1.04);
	outline: none;
}

.thechcom-swiper-nav:focus-visible {
	box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #ff5000;
}

.thechcom-swiper-nav-arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

.thechcom-swiper-arrow-svg {
	display: block;
	width: 100%;
	height: 100%;
	overflow: visible;
}

.thechcom-swiper-arrow-svg--flip {
	transform: scaleX(-1);
}

.thechcom-swiper-arrow-disc,
.thechcom-swiper-arrow-ring,
.thechcom-swiper-arrow-line {
	transition:
		fill 0.22s ease,
		stroke 0.22s ease;
}

.thechcom-swiper-arrow-disc,
.thechcom-swiper-arrow-ring {
	fill: #ff5000;
}

.thechcom-swiper-arrow-line {
	stroke: #ffffff;
}

.thechcom-swiper-nav:hover:not(.swiper-button-disabled) .thechcom-swiper-arrow-disc,
.thechcom-swiper-nav:hover:not(.swiper-button-disabled) .thechcom-swiper-arrow-ring,
.thechcom-swiper-nav:focus-visible:not(.swiper-button-disabled) .thechcom-swiper-arrow-disc,
.thechcom-swiper-nav:focus-visible:not(.swiper-button-disabled) .thechcom-swiper-arrow-ring {
	fill: #ff6a1a;
}

.thechcom-swiper-nav.swiper-button-disabled {
	opacity: 0.32;
	cursor: not-allowed;
	pointer-events: none;
	transform: translateY(-50%);
}

.thechcom-swiper-nav.swiper-button-disabled:hover,
.thechcom-swiper-nav.swiper-button-disabled:focus-visible {
	transform: translateY(-50%);
}

.thechcom-swiper-nav--prev,
.thechcom-swiper-nav.swiper-button-prev {
	left: -35px !important;
	right: auto !important;
}

.thechcom-swiper-nav--next,
.thechcom-swiper-nav.swiper-button-next {
	right: -35px !important;
	left: auto !important;
}

@media (max-width: 767px) {
	.thechcom-swiper-nav {
		display: none;
	}
}