:root {
	--bg: #fcfcf8;
	--bg-alt: #f2f2f2;
	--bg-dark: #3f3e3e;

	--text: #3f3e3e;
	--muted: #6a6868;
	--line: #e3e3e3;

	--primary: #e6ad19;
	--primary-contrast: #3f3e3e;
	--primary-dark: #c89212;
	--primary-soft: #f3d47a;

	--container: 1200px;
	--radius: 18px;
	--radius-sm: 10px;
	--shadow: 0 12px 32px rgba(63, 62, 62, 0.10);
	--transition: 0.25s ease;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: Arial, sans-serif;
	color: var(--text);
	background: var(--bg);
	line-height: 1.5;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

a {
	color: inherit;
	text-decoration: none;
}

button,
input,
textarea,
select {
	font: inherit;
}

.container {
	width: min(92%, var(--container));
	margin: 0 auto;
}

.site-main {
	overflow: hidden;
}

.section-title {
	margin: 0 0 16px;
	font-size: clamp(30px, 4vw, 48px);
	line-height: 1.08;
	color: var(--text);
}

.section-text {
	margin: 0;
	font-size: 18px;
	color: var(--muted);
}

.section-heading {
	margin-bottom: 36px;
}

.section-heading--center {
	text-align: center;
}

.section-subtitle {
	display: inline-block;
	margin-bottom: 10px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--primary);
}

.btn-primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 56px;
	padding: 0 28px;
	border-radius: 999px;
	background: var(--primary);
	color: var(--primary-contrast);
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	transition: var(--transition);
}

.btn-primary:hover {
	transform: translateY(-2px);
	background: var(--primary-dark);
	color: #ffffff;
}

.default-page {
	padding: 140px 0 80px;
}

.page-content {
	font-size: 18px;
}

@media (max-width: 900px) {
	.default-page {
		padding: 120px 0 64px;
	}
}