:root {
	--ink: #111314;
	--paper: #f1efe9;
	--white: #fffdf8;
	--accent: #ff4b34;
	--accent-dark: #d93825;
	--muted: #666862;
	--line: #cfcdc6;
	--shell: min(1420px, calc(100vw - 72px));
	--header: 88px;
	--radius: 0;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
h1, h2, h3 { overflow-wrap: break-word; hyphens: auto; }
.shell { width: var(--shell); margin: 0 auto; }
.shell--text { max-width: 920px; }
.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px; padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link { position: fixed; top: -100px; left: 16px; z-index: 1000; background: var(--white); padding: 12px 18px; }
.skip-link:focus { top: 12px; }

.site-header {
	position: relative;
	z-index: 100;
	height: var(--header);
	background: rgba(241,239,233,.97);
	border-bottom: 1px solid transparent;
	transition: border-color .2s, box-shadow .2s;
}
.site-header.is-sticky {
	position: sticky;
	top: 0;
	border-color: var(--line);
	box-shadow: 0 8px 30px rgba(17,19,20,.05);
}
.site-header__inner { min-height: var(--header); display: flex; align-items: center; gap: 40px; }
.brand { display: inline-flex; align-items: center; gap: 18px; flex: 0 0 auto; }
.brand__name { font-weight: 900; letter-spacing: -.08em; font-size: 29px; line-height: 1; white-space: nowrap; }
.brand__name span { color: var(--accent); }
.brand__descriptor { border-left: 1px solid #aaa9a4; padding-left: 18px; color: #74756f; text-transform: uppercase; letter-spacing: .04em; font-size: 13px; line-height: 1.05; }
.site-nav { display: flex; align-items: center; gap: clamp(24px, 3vw, 54px); margin-left: auto; }
.site-nav a { font-size: 16px; white-space: nowrap; position: relative; }
.site-nav a::after { content: ""; position: absolute; height: 1px; left: 0; right: 100%; bottom: -6px; background: var(--ink); transition: right .2s; }
.site-nav a:hover::after, .site-nav a:focus-visible::after { right: 0; }
.site-header__actions { display: flex; align-items: center; gap: 24px; }
.header-phone { font-size: 16px; font-weight: 700; white-space: nowrap; }
.button {
	display: inline-flex;
	min-height: 58px;
	align-items: center;
	justify-content: center;
	gap: 36px;
	padding: 13px 24px;
	border: 1px solid transparent;
	font-weight: 700;
	font-size: 16px;
	line-height: 1.15;
	text-align: center;
	cursor: pointer;
	transition: background .2s, color .2s, transform .2s;
}
.button:hover { transform: translateY(-2px); }
.button--dark { background: var(--ink); color: var(--white); }
.button--dark:hover { background: #2b2d2e; }
.button--accent { background: var(--accent); color: var(--ink); }
.button--accent:hover { background: #ff624e; }
.button--wide { width: 100%; }
.header-cta { min-height: 52px; padding: 12px 22px; white-space: nowrap; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; padding: 10px; margin-left: auto; }
.menu-toggle > span:not(.screen-reader-text) { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: transform .2s, opacity .2s; }
.menu-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { position: fixed; inset: var(--header) 0 0; z-index: 99; background: var(--ink); color: var(--white); padding: 32px 36px 56px; overflow-y: auto; }
.mobile-menu[hidden] { display: none; }
.mobile-menu a { display: block; font-size: clamp(24px, 7vw, 42px); font-weight: 700; letter-spacing: -.04em; border-bottom: 1px solid #3b3d3e; padding: 13px 0; }
.mobile-menu .mobile-menu__phone { border: 0; color: var(--accent); margin-top: 25px; }

.hero { min-height: calc(100svh - var(--header)); display: flex; align-items: stretch; }
.hero__grid { display: grid; grid-template-columns: 1.1fr .9fr; align-items: stretch; gap: clamp(40px, 5vw, 96px); }
.hero__copy { padding: clamp(86px, 11vh, 150px) 0 70px; align-self: center; }
.eyebrow, .section-index { margin: 0 0 42px; font-size: 14px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.eyebrow { display: flex; align-items: center; gap: 15px; }
.eyebrow > span { display: inline-block; width: 42px; height: 3px; background: var(--accent); }
.hero h1, .service-hero h1, .inner-hero h1, .thanks h1, .not-found h1 {
	margin: 0;
	font-size: clamp(58px, 7vw, 116px);
	line-height: .9;
	letter-spacing: -.075em;
	font-weight: 900;
	max-width: 1000px;
}
h1 em { color: var(--accent); font-style: normal; }
.hero__lead { max-width: 760px; margin: 46px 0 0; font-size: clamp(20px, 1.7vw, 28px); line-height: 1.45; color: #484a47; letter-spacing: -.025em; }
.hero__actions { display: flex; align-items: center; gap: 38px; margin-top: 38px; flex-wrap: wrap; }
.text-link { display: inline-block; font-weight: 700; font-size: 16px; padding: 8px 0; border-bottom: 1px solid var(--ink); }
.hero__facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 670px; margin-top: 64px; border-top: 1px solid var(--line); }
.hero__facts div { padding: 22px 30px 0 0; }
.hero__facts div + div { padding-left: 30px; border-left: 1px solid var(--line); }
.hero__facts strong, .hero__facts span { display: block; }
.hero__facts strong { font-size: 18px; }
.hero__facts span { color: var(--muted); font-size: 15px; margin-top: 5px; }
.hero__visual { display: flex; flex-direction: column; min-width: 0; padding-top: 58px; }
.hero__image-wrap { position: relative; flex: 1; min-height: 640px; background: #ddd8cf; overflow: hidden; }
.hero__image-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center 10%; }
.hero__badge { position: absolute; right: 28px; top: 30px; display: grid; place-items: center; width: 132px; height: 132px; border-radius: 50%; background: var(--accent); font-size: 15px; font-weight: 900; line-height: 1.15; text-align: center; text-transform: uppercase; transform: rotate(8deg); }
.hero__caption { margin: 18px 0 30px; font-size: 14px; color: var(--muted); }
.hero__caption strong { color: var(--ink); font-size: 16px; }

.section { padding: clamp(90px, 10vw, 150px) 0; }
.section-head { display: grid; grid-template-columns: minmax(120px,.35fr) 1.5fr .8fr; align-items: start; gap: 42px; margin-bottom: 70px; }
.section-head h2, .about h2, .split-head h2, .service-result h2, .contact h2, .requisites h2 {
	font-size: clamp(42px, 5.2vw, 78px);
	line-height: .98;
	letter-spacing: -.065em;
	margin: 0;
}
.section-head > p:last-child { margin: 0; color: var(--muted); font-size: 18px; }
.section-index { color: var(--muted); }
.service-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { min-width: 0; min-height: 390px; padding: 32px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 1fr auto; grid-template-rows: auto 1fr auto; transition: background .2s, color .2s; }
.service-card:hover { background: var(--white); }
.service-card--featured { background: var(--accent); border-color: rgba(17,19,20,.25); }
.service-card--featured:hover { background: #ff624e; }
.service-card__number { color: var(--muted); font-size: 14px; font-weight: 700; }
.service-card__tag { justify-self: end; border: 1px solid currentColor; border-radius: 99px; padding: 5px 11px; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.service-card h3 { min-width: 0; grid-column: 1/-1; align-self: end; max-width: 620px; margin: 28px 0 13px; font-size: clamp(34px, 3.5vw, 57px); line-height: .98; letter-spacing: -.055em; }
.service-card p { min-width: 0; grid-column: 1/-1; max-width: 580px; margin: 0; color: var(--muted); }
.service-card--featured p { color: rgba(17,19,20,.73); }
.service-card__link { grid-column: 1/-1; margin-top: 30px; font-weight: 700; font-size: 15px; }
.service-card--dark { background: var(--ink); color: var(--white); }
.service-card--dark p, .service-card--dark .service-card__number { color: #b7b8b3; }
.service-card--dark:hover { background: #292b2c; }
.service-card__arrow { font-size: 36px; }

.approach { background: var(--ink); color: var(--white); }
.section-head--light .section-index, .section-head--light > p { color: #aeb0ad; }
.approach__grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); border-top: 1px solid #434546; border-left: 1px solid #434546; }
.approach-step { min-height: 370px; padding: 30px; border-right: 1px solid #434546; border-bottom: 1px solid #434546; display: flex; flex-direction: column; }
.approach-step > span { color: #8f918e; font-size: 14px; }
.approach-step h3 { margin: auto 0 16px; font-size: clamp(30px, 3vw, 46px); letter-spacing: -.05em; }
.approach-step p { color: #babbba; font-size: 16px; margin: 0; }
.approach-step--accent { background: var(--accent); color: var(--ink); border-color: var(--accent); }
.approach-step--accent p, .approach-step--accent > span { color: rgba(17,19,20,.7); }

.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(55px, 8vw, 130px); align-items: center; }
.about__image { min-height: 650px; background: #ddd7cd; overflow: hidden; }
.about__image img { width: 100%; height: 100%; min-height: 650px; object-fit: cover; object-position: center; filter: saturate(.82); }
.about__copy .section-index { margin-bottom: 48px; }
.about__lead { margin: 44px 0 20px; font-size: 24px; line-height: 1.4; letter-spacing: -.025em; }
.about__copy > p:not(.section-index):not(.about__lead) { color: var(--muted); }
.about blockquote { margin: 42px 0; padding-left: 24px; border-left: 3px solid var(--accent); font-size: 20px; font-weight: 700; }

.knowledge { background: var(--white); }
.section-head--row { grid-template-columns: 1fr auto; align-items: end; }
.section-head--row .section-index { margin-bottom: 34px; }
.article-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.article-card { min-height: 380px; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); display: flex; flex-direction: column; }
.article-card > p { margin: 0 0 55px; color: var(--muted); font-size: 13px; }
.article-card h2, .article-card h3 { font-size: clamp(26px, 2.3vw, 36px); line-height: 1.1; letter-spacing: -.04em; margin: 0 0 22px; }
.article-card h2 a:hover, .article-card h3 a:hover { color: var(--accent-dark); }
.article-card > div { color: var(--muted); font-size: 16px; }
.article-card > div p { margin: 0; }
.article-card__link { margin-top: auto; padding-top: 30px; font-size: 15px; font-weight: 700; }

.contact { background: var(--accent); }
.contact__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(50px, 8vw, 130px); align-items: start; }
.contact__copy > p:not(.section-index) { max-width: 610px; font-size: 20px; }
.contact__direct { margin-top: 60px; display: flex; flex-direction: column; }
.contact__direct span, .contact__direct small { font-size: 14px; }
.contact__direct a { margin: 7px 0; font-size: clamp(32px, 3.4vw, 52px); font-weight: 900; letter-spacing: -.04em; }
.contact__form { background: var(--white); padding: clamp(28px, 4vw, 58px); }
.lead-form label { display: block; }
.lead-form label > span:first-child { display: block; margin-bottom: 8px; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; }
.lead-form input[type="text"], .lead-form input[type="tel"], .lead-form select {
	width: 100%; min-width: 0; height: 62px; padding: 0 17px; border: 1px solid #c9c7c0; border-radius: 0; background: #faf9f5; color: var(--ink); outline: 0;
}
.lead-form input:focus, .lead-form select:focus { border-color: var(--ink); box-shadow: 0 0 0 1px var(--ink); }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; margin-bottom: 20px; }
.lead-form > label:not(.consent):not(.vp-honeypot) { margin-bottom: 20px; }
.consent { display: grid !important; grid-template-columns: 22px 1fr; gap: 11px; align-items: start; margin: 25px 0 8px; font-size: 13px; }
.consent input { width: 18px; height: 18px; margin: 2px 0 0; accent-color: var(--ink); }
.consent span { display: block !important; margin: 0 !important; text-transform: none !important; letter-spacing: 0 !important; font-weight: 400 !important; }
.consent a, .consent-note a { text-decoration: underline; }
.consent-note, .form-note, .form-status { font-size: 12px; color: var(--muted); }
.lead-form .button { margin-top: 22px; }
.vp-honeypot { position: absolute !important; left: -10000px !important; opacity: 0 !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-status--error { color: #9e1d10; font-weight: 700; }

.site-footer { position: relative; background: var(--ink); color: var(--white); padding: 90px 0 34px; }
.site-footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 70px; }
.brand--light .brand__descriptor { color: #aaa; border-color: #555; }
.site-footer__tagline { max-width: 410px; color: #aaa; margin: 35px 0 0; }
.site-footer h2 { margin: 0 0 26px; color: #8f918e; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin: 0 0 13px; }
.site-footer a:hover { color: var(--accent); }
.site-footer p { margin: 0 0 12px; color: #c7c7c3; }
.site-footer__phone { color: var(--white); font-size: 25px; font-weight: 800; }
.site-footer__legal { border-top: 1px solid #3a3c3d; margin-top: 75px; padding-top: 28px; display: flex; justify-content: space-between; gap: 40px; font-size: 12px; }
.site-footer__legal div { display: flex; gap: 22px; flex-wrap: wrap; justify-content: flex-end; }
.mobile-call { display: none; }
.cookie-notice { position: fixed; z-index: 200; left: 24px; bottom: 24px; max-width: 520px; display: flex; align-items: center; gap: 18px; padding: 18px 20px; background: var(--white); color: var(--ink); border: 1px solid var(--line); box-shadow: 0 15px 60px rgba(0,0,0,.16); }
.cookie-notice[hidden] { display: none; }
.cookie-notice p { margin: 0; font-size: 13px; color: var(--muted); }
.cookie-notice a { text-decoration: underline; }
.cookie-notice button { border: 0; background: var(--ink); color: var(--white); padding: 10px 14px; font-size: 13px; cursor: pointer; }

.breadcrumbs { display: flex; gap: 8px; align-items: center; padding: 26px 0 0; color: var(--muted); font-size: 12px; overflow: hidden; white-space: nowrap; }
.breadcrumbs span:last-child { overflow: hidden; text-overflow: ellipsis; }
.service-hero { padding: clamp(75px, 9vw, 130px) 0 clamp(80px, 9vw, 140px); }
.service-hero__grid { display: grid; grid-template-columns: 1.45fr .55fr; gap: clamp(55px, 8vw, 140px); align-items: end; }
.service-hero h1 { font-size: clamp(52px, 6.7vw, 104px); }
.service-hero__lead { max-width: 850px; margin: 40px 0 0; color: var(--muted); font-size: clamp(20px, 1.8vw, 27px); }
.service-hero__panel { min-height: 400px; background: var(--accent); padding: 30px; display: flex; flex-direction: column; }
.service-hero__number { font-size: clamp(85px, 10vw, 154px); line-height: .8; font-weight: 900; letter-spacing: -.08em; }
.service-hero__panel strong { margin: auto 0 15px; font-size: 26px; }
.service-hero__panel p { margin: 0; font-size: 15px; }
.split-head { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(60px, 9vw, 160px); }
.ruled-list { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--line); }
.ruled-list li { border-bottom: 1px solid var(--line); padding: 24px 0 24px 38px; position: relative; font-size: 21px; }
.ruled-list li::before { content: ""; position: absolute; left: 0; top: 34px; width: 10px; height: 10px; border-radius: 50%; background: var(--accent); }
.service-result { background: var(--accent); }
.service-result__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(60px, 9vw, 160px); }
.service-result ol { list-style: none; margin: 0; padding: 0; counter-reset: results; border-top: 1px solid rgba(17,19,20,.28); }
.service-result li { counter-increment: results; border-bottom: 1px solid rgba(17,19,20,.28); padding: 23px 0 23px 60px; position: relative; font-size: 19px; }
.service-result li::before { content: "0" counter(results); position: absolute; left: 0; font-size: 13px; font-weight: 800; }
.service-process { background: var(--white); }
.process-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.process-card { min-height: 340px; padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); display: flex; flex-direction: column; }
.process-card > span { color: var(--muted); font-size: 13px; }
.process-card h3 { margin: auto 0 14px; font-size: 29px; letter-spacing: -.04em; }
.process-card p { margin: 0; color: var(--muted); font-size: 15px; }
.service-notice { margin: 45px 0 0; padding-left: 22px; max-width: 900px; border-left: 3px solid var(--accent); color: var(--muted); }
.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item button { width: 100%; min-height: 80px; display: flex; align-items: center; justify-content: space-between; gap: 30px; border: 0; padding: 18px 0; background: transparent; text-align: left; font-weight: 700; cursor: pointer; }
.faq__item i { font-style: normal; font-size: 32px; font-weight: 300; transition: transform .2s; }
.faq__item button[aria-expanded="true"] i { transform: rotate(45deg); }
.faq__item > div p { margin: 0; padding: 0 45px 26px 0; color: var(--muted); }

.inner-hero { padding: clamp(80px, 10vw, 150px) 0; }
.inner-hero__grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 80px; align-items: end; }
.inner-hero h1 { font-size: clamp(60px, 7.5vw, 112px); }
.inner-hero__grid > p { margin: 0; color: var(--muted); font-size: 22px; max-width: 580px; }
.contact-details { background: var(--white); }
.contact-details__grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.contact-details__grid > div { min-height: 270px; padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); display: flex; flex-direction: column; }
.contact-details span { color: var(--muted); font-size: 13px; text-transform: uppercase; letter-spacing: .09em; }
.contact-details a, .contact-details strong { margin: auto 0 15px; font-size: clamp(24px, 2.2vw, 34px); line-height: 1.2; letter-spacing: -.035em; }
.contact-details small { color: var(--muted); }
.contact--inner, .contact--article { background: var(--accent); }
.requisites__row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 35px; }
.requisites__row span { border: 1px solid var(--line); padding: 12px 17px; font-size: 14px; }
.legal-content, .article-single { padding-top: 85px; padding-bottom: 130px; }
.legal-content h1, .article-single h1 { margin: 0 0 60px; font-size: clamp(42px, 6vw, 80px); line-height: .98; letter-spacing: -.06em; }
.prose { font-size: 18px; }
.prose h2 { margin: 52px 0 17px; font-size: 30px; letter-spacing: -.035em; }
.prose h3 { margin: 38px 0 14px; font-size: 24px; }
.prose p, .prose li { color: #3e403e; }
.prose ul, .prose ol { padding-left: 24px; }
.prose table { display: block; max-width: 100%; overflow-x: auto; }
.article-single header { margin-bottom: 60px; }
.article-single__intro { font-size: 23px; color: var(--muted); }
.article-author { display: grid; grid-template-columns: 74px 1fr; gap: 20px; align-items: center; margin-top: 58px; padding: 22px; border: 1px solid var(--line); background: var(--paper-2); }
.article-author img { width: 74px; height: 74px; object-fit: cover; object-position: center 18%; filter: grayscale(1); }
.article-author strong { display: block; margin-bottom: 5px; font-size: 17px; }
.article-author p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.5; }
.related { border-top: 1px solid var(--line); }
.article-disclaimer { margin-top: 60px; padding: 24px; border: 1px solid var(--line); color: var(--muted); font-size: 14px; }
.article-grid--archive { grid-template-columns: repeat(3,minmax(0,1fr)); }
.navigation.pagination { width: var(--shell); margin: -70px auto 100px; }
.nav-links { display: flex; gap: 10px; }
.page-numbers { padding: 10px 15px; border: 1px solid var(--line); }
.page-numbers.current { background: var(--ink); color: var(--white); }
.thanks { min-height: calc(100svh - var(--header)); display: flex; align-items: center; padding: 70px 0; }
.thanks__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(60px,8vw,140px); align-items: center; }
.thanks h1 { font-size: clamp(58px, 7.4vw, 110px); }
.thanks__grid > div:first-child > p:not(.eyebrow) { max-width: 680px; color: var(--muted); font-size: 21px; margin: 40px 0; }
.thanks__panel { background: var(--ink); color: var(--white); padding: clamp(32px,5vw,65px); }
.thanks__panel > span { color: var(--accent); font-size: 13px; text-transform: uppercase; letter-spacing: .1em; }
.thanks__panel h2 { margin: 80px 0 25px; font-size: clamp(28px,3vw,42px); line-height: 1.1; letter-spacing: -.04em; }
.thanks__panel p { color: #b7b8b3; }
.thanks__social { margin-top: 45px; border-top: 1px solid #444; }
.thanks__social a { display: block; padding: 15px 0; border-bottom: 1px solid #444; }
.not-found { min-height: calc(100svh - var(--header)); display: flex; align-items: center; padding: 70px 0; }
.not-found p:not(.eyebrow) { color: var(--muted); font-size: 20px; }

@media (max-width: 1240px) {
	:root { --shell: min(1160px, calc(100vw - 48px)); }
	.site-nav { display: none; }
	.site-header__actions { margin-left: auto; }
	.menu-toggle { display: block; margin-left: 0; }
	.hero__grid { grid-template-columns: 1.05fr .95fr; gap: 45px; }
	.hero__copy { padding-top: 80px; }
	.hero__image-wrap { min-height: 570px; }
	.section-head { grid-template-columns: .3fr 1.4fr .7fr; }
	.approach-step { min-height: 330px; }
}

@media (max-width: 920px) {
	:root { --shell: calc(100vw - 40px); --header: 74px; }
	body { font-size: 17px; padding-bottom: calc(62px + env(safe-area-inset-bottom, 0px)); }
	.site-header__inner { gap: 15px; }
	.brand__descriptor { display: none; }
	.brand__name { font-size: 25px; }
	.header-phone { display: none; }
	.header-cta { min-height: 44px; padding: 10px 16px; font-size: 14px; }
	.hero { min-height: 0; }
	.hero__grid { grid-template-columns: 1fr; gap: 0; }
	.hero__copy { padding: 70px 0 55px; }
	.hero h1 { font-size: clamp(60px, 12vw, 92px); }
	.hero__visual { padding: 0; }
	.hero__image-wrap { min-height: 720px; }
	.hero__caption { margin-bottom: 0; }
	.section-head { grid-template-columns: 1fr 2fr; }
	.section-head > p:last-child { grid-column: 2; }
	.service-card { min-height: 350px; }
	.approach__grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
	.about__grid { grid-template-columns: 1fr; }
	.about__image { min-height: 560px; }
	.about__image img { min-height: 560px; }
	.article-grid, .article-grid--archive { grid-template-columns: repeat(2,minmax(0,1fr)); }
	.article-card:last-child { grid-column: 1/-1; }
	.contact__grid { grid-template-columns: 1fr; }
	.site-footer__grid { grid-template-columns: 1.3fr 1fr; }
	.site-footer__grid > div:last-child { grid-column: 1/-1; }
	.mobile-call { display: flex; position: fixed; z-index: 150; left: 0; right: 0; bottom: 0; min-height: 62px; padding: 0 20px env(safe-area-inset-bottom, 0px); align-items: center; justify-content: center; background: var(--accent); color: var(--ink); font-weight: 800; border-top: 1px solid rgba(17,19,20,.2); }
	.cookie-notice { bottom: 76px; }
	.service-hero__grid { grid-template-columns: 1fr; }
	.service-hero__panel { min-height: 260px; }
	.service-hero__panel strong { margin-top: 60px; }
	.split-head, .service-result__grid { grid-template-columns: 1fr; }
	.process-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
	.inner-hero__grid { grid-template-columns: 1fr; gap: 45px; }
	.contact-details__grid { grid-template-columns: 1fr; }
	.contact-details__grid > div { min-height: 220px; }
	.thanks__grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
	.service-grid, .article-grid, .article-grid--archive { grid-template-columns: 1fr; }
	.article-card, .article-card:last-child { grid-column: auto; }
}

@media (max-width: 640px) {
	:root { --shell: calc(100vw - 32px); --header: 68px; }
	body { font-size: 16px; }
	.site-header__inner { min-height: var(--header); }
	.brand__name { font-size: 23px; }
	.header-cta { display: none; }
	.menu-toggle { margin-left: auto; }
	.mobile-menu { padding: 22px 20px calc(104px + env(safe-area-inset-bottom, 0px)); }
	.mobile-menu a { font-size: 23px; }
	.eyebrow, .section-index { margin-bottom: 28px; font-size: 11px; letter-spacing: .08em; }
	.eyebrow > span { width: 32px; }
	.hero__copy { padding: 54px 0 42px; }
	.hero h1, .service-hero h1, .inner-hero h1, .thanks h1, .not-found h1 { font-size: clamp(47px, 15.2vw, 72px); line-height: .92; }
	.hero__lead { margin-top: 28px; font-size: 19px; }
	.hero__actions { align-items: stretch; flex-direction: column; gap: 14px; }
	.button { gap: 18px; padding-left: 16px; padding-right: 16px; }
	.hero__actions .button { width: 100%; }
	.hero__actions .text-link { align-self: flex-start; }
	.hero__facts { grid-template-columns: 1fr; margin-top: 42px; }
	.hero__facts div { padding: 18px 0; }
	.hero__facts div + div { padding-left: 0; border-left: 0; border-top: 1px solid var(--line); }
	.hero__image-wrap { min-height: 480px; }
	.hero__badge { right: 16px; top: 16px; width: 92px; height: 92px; font-size: 11px; }
	.section { padding: 75px 0; }
	.section-head { display: block; margin-bottom: 42px; }
	.section-head h2, .about h2, .split-head h2, .service-result h2, .contact h2, .requisites h2 { font-size: clamp(39px, 12vw, 58px); }
	.section-head > p:last-child { margin-top: 24px; font-size: 16px; }
	.service-grid { grid-template-columns: 1fr; }
	.service-card { min-height: 330px; padding: 23px; }
	.service-card h3 { font-size: 39px; }
	.approach__grid { grid-template-columns: 1fr; }
	.approach-step { min-height: 260px; padding: 23px; }
	.about__image, .about__image img { min-height: 410px; }
	.about__lead { font-size: 20px; }
	.section-head--row { display: flex; flex-direction: column; align-items: flex-start; }
	.article-grid, .article-grid--archive { grid-template-columns: 1fr; }
	.article-card, .article-card:last-child { grid-column: auto; min-height: 330px; padding: 23px; }
	.article-card > p { margin-bottom: 35px; }
	.contact__direct { margin-top: 40px; }
	.contact__direct a { max-width: 100%; font-size: clamp(26px, 8.4vw, 31px); white-space: nowrap; }
	.contact__form { padding: 24px 18px; margin-left: -8px; margin-right: -8px; }
	.form-row { grid-template-columns: 1fr; }
	.lead-form input[type="text"], .lead-form input[type="tel"], .lead-form select { height: 58px; }
	.site-footer { padding-top: 65px; }
	.site-footer__grid { grid-template-columns: 1fr; gap: 48px; }
	.site-footer__grid > div:last-child { grid-column: auto; }
	.site-footer__legal { margin-top: 55px; flex-direction: column; }
	.site-footer__legal div { justify-content: flex-start; flex-direction: column; gap: 10px; }
	.cookie-notice { left: 12px; right: 12px; bottom: 74px; max-width: none; align-items: flex-start; }
	.breadcrumbs { padding-top: 18px; }
	.service-hero { padding: 55px 0 75px; }
	.service-hero__lead { font-size: 18px; margin-top: 28px; }
	.service-hero__panel { min-height: 240px; padding: 23px; }
	.service-hero__number { font-size: 100px; }
	.split-head, .service-result__grid { gap: 42px; }
	.ruled-list li { font-size: 18px; padding: 20px 0 20px 30px; }
	.ruled-list li::before { top: 29px; }
	.service-result li { padding-left: 48px; font-size: 17px; }
	.process-grid { grid-template-columns: 1fr; }
	.process-card { min-height: 260px; padding: 23px; }
	.faq__item button { min-height: 70px; }
	.faq__item > div p { padding-right: 20px; }
	.inner-hero { padding: 60px 0 80px; }
	.inner-hero__grid > p { font-size: 18px; }
	.contact-details__grid > div { min-height: 190px; padding: 23px; }
	.legal-content, .article-single { padding-top: 60px; padding-bottom: 85px; }
	.legal-content h1, .article-single h1 { font-size: clamp(37px, 12vw, 45px); margin-bottom: 40px; }
	.prose { font-size: 16px; }
	.prose h2 { font-size: 26px; }
	.article-single__intro { font-size: 19px; }
	.article-author { grid-template-columns: 58px 1fr; padding: 16px; }
	.article-author img { width: 58px; height: 58px; }
	.thanks { padding: 55px 0 80px; }
	.thanks__grid { gap: 55px; }
	.thanks__panel h2 { margin-top: 55px; }
	.not-found { padding: 60px 0 90px; }
}

@media (max-width: 420px) {
	:root { --shell: calc(100vw - 28px); }
	.hero h1, .service-hero h1, .inner-hero h1, .thanks h1, .not-found h1 { font-size: clamp(43px, 14vw, 58px); }
	.section-head h2, .about h2, .split-head h2, .service-result h2, .contact h2, .requisites h2 { font-size: clamp(36px, 11.5vw, 48px); }
	.service-card { min-height: 310px; padding: 20px; }
	.service-card h3 { font-size: 35px; }
	.article-card, .article-card:last-child { min-height: 300px; padding: 20px; }
	.contact__form { margin-left: 0; margin-right: 0; padding: 22px 16px; }
	.cookie-notice { flex-direction: column; gap: 12px; }
	.cookie-notice button { width: 100%; }
	.article-author { grid-template-columns: 1fr; }
	.article-author img { width: 64px; height: 64px; }
}

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