/* Readable typography overrides — local Nunito, larger type, comfortable leading */

:root {
	--gsc-font: "Nunito", "ProximaNova", sans-serif;
	--gsc-text: #2a3228;
	--gsc-muted: #5f6b5a;
	--gsc-accent: #d7b46a;
	--gsc-green: #319030;
	--gsc-soft: #f3f1ed;
	--gsc-lh: 1.72;
	--gsc-lh-title: 1.28;
}

body {
	font-family: var(--gsc-font) !important;
	font-size: 18px !important;
	line-height: var(--gsc-lh) !important;
	color: var(--gsc-text);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

/* Headings sitewide */
.title_wr,
h1, h2, h3, h4,
.page_hero_title,
.home_video_hero_title,
.home_video_hero_brand,
.main_slider .title,
.btn,
.btn_light {
	font-family: var(--gsc-font) !important;
}

.title_wr {
	font-size: 36px !important;
	line-height: var(--gsc-lh-title) !important;
	font-weight: 800 !important;
	letter-spacing: -0.01em;
}

/* Long-form content */
.article,
.article.article_l,
.page_wr .article,
.service_left .article,
.main_about .article {
	font-family: var(--gsc-font) !important;
	font-size: 18px !important;
	line-height: var(--gsc-lh) !important;
	color: var(--gsc-text);
	max-width: 72ch;
}

.article p,
.article.article_l p {
	font-size: 18px !important;
	line-height: var(--gsc-lh) !important;
	padding-bottom: 1.15em !important;
	margin: 0;
}

/* Lead paragraph — easier entry into text */
.article > p:first-of-type,
.article.article_l > p:first-of-type,
.main_about .article > p:first-of-type {
	font-size: 20px !important;
	line-height: 1.65 !important;
	font-weight: 600;
	color: #243022;
}

.article h1,
.article.article_l h1 {
	font-size: 36px !important;
	line-height: var(--gsc-lh-title) !important;
	font-weight: 800 !important;
	padding-bottom: 0.55em !important;
	letter-spacing: -0.015em;
}

.article h2,
.article.article_l h2 {
	font-size: 28px !important;
	line-height: var(--gsc-lh-title) !important;
	font-weight: 800 !important;
	padding-top: 0.35em;
	padding-bottom: 0.55em !important;
	position: relative;
}

/* Decorative gold accent under section headings */
.article h2::after,
.article.article_l h2::after {
	content: "";
	display: block;
	width: 56px;
	height: 3px;
	margin-top: 12px;
	border-radius: 3px;
	background: var(--gsc-accent);
}

.article h3,
.article.article_l h3 {
	font-size: 22px !important;
	line-height: 1.35 !important;
	font-weight: 700 !important;
	padding-bottom: 0.55em !important;
	color: #243022;
}

.article h4 {
	font-size: 19px !important;
	line-height: 1.4 !important;
	font-weight: 700 !important;
}

/* Lists — more air */
.article ul,
.article ol {
	padding-bottom: 1.2em !important;
	line-height: var(--gsc-lh);
}

.article ul li,
.article ol li {
	padding-bottom: 0.65em !important;
	line-height: var(--gsc-lh) !important;
}

.article ul:not(.dtr-details) li {
	padding-left: 34px !important;
}

.article ul:not(.dtr-details) li:before {
	top: 0.45em !important;
}

/* Blockquotes / “comments” — callout cards for notes */
.article blockquote,
.article .gsc-note,
.article .gsc-comment {
	margin: 1.4em 0 1.6em;
	padding: 18px 22px 18px 24px;
	border-left: 4px solid var(--gsc-accent);
	border-radius: 0 12px 12px 0;
	background: var(--gsc-soft);
	box-shadow: 0 2px 10px rgba(28, 36, 24, 0.06);
	font-size: 17px !important;
	line-height: 1.65 !important;
	font-style: italic;
	color: var(--gsc-muted);
	position: relative;
}

.article blockquote::before,
.article .gsc-note::before,
.article .gsc-comment::before {
	content: "Комментарий";
	display: block;
	margin-bottom: 8px;
	font-size: 11px;
	font-style: normal;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--gsc-green);
}

.article blockquote p,
.article .gsc-note p,
.article .gsc-comment p {
	font-size: inherit !important;
	line-height: inherit !important;
	padding-bottom: 0.5em !important;
	font-style: italic;
	color: inherit;
}

.article blockquote p:last-child,
.article .gsc-note p:last-child,
.article .gsc-comment p:last-child {
	padding-bottom: 0 !important;
}

/* Soft highlight for strong emphasis in text */
.article strong,
.article b {
	font-weight: 700;
	color: #1f2a1c;
}

/* Hero / USP readability */
.page_hero_title {
	font-size: 44px !important;
	line-height: 1.2 !important;
	letter-spacing: -0.02em;
}
.page_hero_usp {
	font-size: 18px !important;
	line-height: 1.65 !important;
	max-width: 640px;
}
.home_video_hero_title {
	font-size: 48px !important;
	line-height: 1.18 !important;
}
.home_video_hero_usp {
	font-size: 19px !important;
	line-height: 1.65 !important;
}

/* Menu / UI keep slightly tighter but same family */
.menu_header,
.header,
.footer {
	font-family: var(--gsc-font);
}

.menu_header a {
	font-weight: 700;
}

/* Reading comfort on about / service columns */
.about_wr .article,
.main_about .article,
.service_left .article {
	max-width: none;
}

.about_wr .left.article,
.main_about .left .article {
	max-width: 62ch;
}

@media screen and (max-width: 1000px) {
	body {
		font-size: 17px !important;
	}
	.title_wr {
		font-size: 30px !important;
	}
	.page_hero_title {
		font-size: 34px !important;
	}
	.home_video_hero_title {
		font-size: 34px !important;
	}
	.article > p:first-of-type,
	.article.article_l > p:first-of-type {
		font-size: 18px !important;
	}
}

@media screen and (max-width: 720px) {
	body {
		font-size: 16px !important;
		line-height: 1.68 !important;
	}
	.title_wr {
		font-size: 26px !important;
	}
	.article,
	.article.article_l,
	.article p,
	.article.article_l p {
		font-size: 16px !important;
	}
	.article h2,
	.article.article_l h2 {
		font-size: 24px !important;
	}
	.page_hero_title {
		font-size: 28px !important;
	}
	.home_video_hero_title {
		font-size: 28px !important;
	}
}
