

/* Start:/about/about.css?17890508789740*/
/* ============================================
   СТРАНИЦА «О НАС» — AJERRA
   Палитра: #feb05d (оранжевый) / #ffffff / #222222
   Файл автономен: шапка и футер — заглушки
   ============================================ */

:root {
	--about-primary: #feb05d;
	--about-dark: #222222;
	--about-white: #ffffff;
	--about-bg: #f5f2f2;
	--about-text: #222222;
	--about-text-muted: #7b7b7b;
	--about-text-soft: #d9d9d9;
	--about-border: #d3d3d3;
	--about-container-max: 1345px;
	--about-radius-card: 20px;
	--about-transition: 250ms ease;
}

/* Reset (для автономной страницы) */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

ul {
	list-style: none;
}

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

img,
svg {
	display: block;
	max-width: 100%;
}

body {
	font-family: "Inter", "Manrope", sans-serif;
	font-size: 16px;
	line-height: 1.5;
	color: var(--about-text);
	background: var(--about-bg);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* Контейнер */
.about-container {
	width: 100%;
	max-width: var(--about-container-max);
	margin: 0 auto;
	padding: 0 24px;
}

/* ============================================
   ЗАГЛУШКА ШАПКИ
   (на проекте заменить на includes/header-page.php)
   ============================================ */

.stub-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--about-dark);
}

.stub-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 90px;
}

.stub-logo {
	font-family: "Krona One", sans-serif;
	font-size: 20px;
	color: var(--about-white);
	letter-spacing: 0.04em;
}

.stub-nav {
	display: flex;
	gap: 36px;
}

.stub-nav a {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.65);
	transition: color 150ms ease;
}

.stub-nav a:hover,
.stub-nav a.active {
	color: var(--about-primary);
}

/* ============================================
   HERO
   ============================================ */

.about-hero {
	position: relative;
	overflow: hidden;
	padding: 48px 0 104px;
	background: var(--about-dark);
	color: var(--about-white);
}

.about-hero-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 68% center;
}

.about-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		90deg,
		rgba(34, 34, 34, 0.94) 0%,
		rgba(34, 34, 34, 0.72) 45%,
		rgba(34, 34, 34, 0.15) 100%
	);
}

.about-hero .about-container {
	position: relative;
	z-index: 1;
}

.about-breadcrumbs {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 88px;
}

.about-breadcrumbs-link {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.55);
	transition: color 150ms ease;
}

.about-breadcrumbs-link:hover {
	color: var(--about-primary);
}

.about-breadcrumbs-arrow {
	opacity: 0.4;
}

.about-breadcrumbs-current {
	font-size: 14px;
	color: var(--about-white);
}

.about-hero-eyebrow {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 24px;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.25em;
	color: var(--about-primary);
}

.about-hero-eyebrow::before {
	content: "";
	width: 48px;
	height: 2px;
	background: var(--about-primary);
}

.about-hero-title {
	margin-bottom: 24px;
	font-size: clamp(56px, 7vw, 92px);
	font-weight: 800;
	line-height: 1.05;
	letter-spacing: -0.02em;
	text-transform: uppercase;
	color: var(--about-white);
}

.about-hero-subtitle {
	max-width: 640px;
	font-size: 20px;
	line-height: 1.4;
	color: var(--about-text-soft);
}

.about-hero-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 48px;
}

.about-hero-tags li {
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.72);
}

.about-hero-tags li + li::before {
	content: "·";
	margin-right: 12px;
	color: var(--about-primary);
}

/* ============================================
   КТО МЫ
   ============================================ */

.about-intro {
	padding: 112px 0 96px;
}

.about-intro-grid {
	display: grid;
	grid-template-columns: 300px 1fr;
	gap: 80px;
}

.about-intro-side {
	position: sticky;
	top: 130px;
	align-self: start;
}

.about-intro-side::after {
	content: "";
	display: block;
	width: 56px;
	height: 2px;
	margin-top: 20px;
	background: var(--about-primary);
}

.about-section-label {
	display: block;
	font-size: 15px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	color: var(--about-text-muted);
}

.about-lead {
	margin-bottom: 32px;
	font-size: clamp(22px, 2.6vw, 27px);
	font-weight: 600;
	line-height: 1.35;
	color: var(--about-text);
}

.about-intro-text p {
	margin-bottom: 24px;
	font-size: 17px;
	line-height: 1.75;
	color: #3d3d3d;
}

.about-intro-text p:last-child {
	margin-bottom: 0;
}

.about-mark {
	font-weight: 600;
	box-shadow: inset 0 -2px 0 var(--about-primary);
}

/* ============================================
   ПРИНЦИПЫ
   ============================================ */

.about-principles {
	padding-bottom: 112px;
}

.about-section-head {
	margin-bottom: 48px;
}

.about-section-title {
	font-size: 36px;
	font-weight: 800;
	line-height: 1.2;
	color: var(--about-text);
}

.about-cards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.about-card {
	display: flex;
	flex-direction: column;
	padding: 32px 28px;
	background: var(--about-white);
	border-radius: var(--about-radius-card);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
	transition:
		transform var(--about-transition),
		box-shadow var(--about-transition);
}

.about-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.about-card-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	margin-bottom: 24px;
	background: var(--about-primary);
	border-radius: 9999px;
	color: var(--about-dark);
}

.about-card h3 {
	margin-bottom: 12px;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.3;
	color: var(--about-text);
}

.about-card p {
	font-size: 15px;
	line-height: 1.6;
	color: var(--about-text-muted);
}

/* ============================================
   ДЕВИЗ
   ============================================ */

.about-motto {
	position: relative;
	overflow: hidden;
	padding: 120px 0;
	background: var(--about-dark);
	color: var(--about-white);
	text-align: center;
}

.about-motto::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 420px;
	height: 100%;
	background: repeating-linear-gradient(
		45deg,
		rgba(254, 176, 93, 0.14) 0 2px,
		transparent 2px 26px
	);
	pointer-events: none;
}

.about-motto .about-container {
	position: relative;
	z-index: 1;
}

.about-motto-label {
	margin-bottom: 24px;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.3em;
	color: var(--about-primary);
}

.about-motto-text {
	font-size: clamp(52px, 8vw, 110px);
	font-weight: 800;
	line-height: 0.95;
	letter-spacing: -0.02em;
	text-transform: uppercase;
	color: var(--about-white);
}

.about-motto-text span {
	color: var(--about-primary);
}

.about-motto-row {
	color: var(--about-white);
}

.about-motto-desc {
	max-width: 560px;
	margin: 32px auto 48px;
	font-size: 17px;
	line-height: 1.7;
	color: #b9b9b9;
}

.about-btn {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 17px 36px;
	background: var(--about-primary);
	border-radius: 9999px;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--about-dark);
	transition:
		transform var(--about-transition),
		box-shadow var(--about-transition);
}

.about-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(254, 176, 93, 0.45);
}

/* ============================================
   ЗАГЛУШКА ФУТЕРА
   (на проекте заменить на includes/footer.php)
   ============================================ */

.stub-footer {
	padding: 28px 0;
	background: var(--about-dark);
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stub-footer p {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   АДАПТИВ
   ============================================ */

@media (max-width: 1200px) {
	.stub-nav {
		display: none;
	}

	.about-intro {
		padding: 96px 0 80px;
	}

	.about-intro-grid {
		display: block;
	}

	.about-intro-side {
		position: static;
		margin-bottom: 40px;
	}

	.about-cards {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.about-container {
		padding: 0 16px;
	}

	.about-hero {
		padding: 32px 0 72px;
	}

	.about-hero-bg {
		object-position: 75% center;
	}

	.about-hero-overlay {
		background: linear-gradient(
			180deg,
			rgba(34, 34, 34, 0.93) 0%,
			rgba(34, 34, 34, 0.6) 45%,
			rgba(34, 34, 34, 0.88) 100%
		);
	}

	.about-breadcrumbs {
		margin-bottom: 48px;
	}

	.about-hero-subtitle {
		font-size: 17px;
	}

	.about-hero-tags {
		gap: 8px;
		margin-top: 36px;
	}

	.about-hero-tags li {
		font-size: 11px;
		letter-spacing: 0.1em;
	}

	.about-intro {
		padding: 72px 0 64px;
	}

	.about-intro-text p {
		font-size: 16px;
	}

	.about-principles {
		padding-bottom: 72px;
	}

	.about-section-head {
		margin-bottom: 32px;
	}

	.about-section-title {
		font-size: 30px;
	}

	.about-cards {
		grid-template-columns: 1fr;
	}

	.about-card {
		padding: 28px 24px;
	}

	.about-motto {
		padding: 88px 0;
	}

	.about-motto-text {
		font-size: clamp(44px, 12vw, 56px);
	}

	.about-motto-row {
		display: block;
	}

	.about-motto-desc {
		margin: 24px auto 40px;
		font-size: 16px;
	}
}

/* End */
/* /about/about.css?17890508789740 */
