/* ABOUT SECTION */
section#about {
	border-left: 4px solid var(--gold);
	background-color: #1e1b16 !important;
	box-shadow: inset 12px 0 32px -10px rgba(184, 146, 74, 0.18);
	position: relative;
	z-index: 5;
}

#badge-about {
	color: var(--gold);
	border-color: var(--gold);
	background: rgba(184, 146, 74, 0.12);
	box-shadow: 0 0 15px rgba(184, 146, 74, 0.15);
}

.about-grid {
	display: grid;
	grid-template-columns: 1.25fr 1fr;
	gap: 3.5rem;
	align-items: center;
	margin-top: 1.5rem;
}

@media (max-width: 768px) {
	.about-grid { grid-template-columns: 1fr; gap: 2rem; }
}

#about .sec-title { 
	color: #ffffff; 
	font-size: clamp(2.4rem, 5vw, 3.5rem);
}

#about p {
	color: #e4e4e7;
	font-size: 15px;
	line-height: 1.85;
	margin-bottom: 1.1rem;
}

/* Service color tags */
#about p strong span {
	font-weight: 700;
	letter-spacing: 0.02em;
}

/* Stats box - Exact dark glass match */
.stats {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1px;
	background: rgba(184, 146, 74, 0.22);
	border: 1px solid rgba(184, 146, 74, 0.28);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45);
}

.stat {
	background: #15130f !important;
	padding: 1.75rem 1.25rem;
	text-align: center;
	transition: background 0.25s ease, transform 0.25s ease;
	cursor: default;
}

.stat:hover {
	background: #1c1913 !important;
	transform: scale(1.02);
}

.stat-n {
	font-family: var(--serif);
	font-size: 2.35rem;
	line-height: 1;
	margin-bottom: 0.45rem;
	color: var(--gold);
	background: linear-gradient(135deg, #e6c587, #b8924a);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-weight: 700;
}

.stat-l {
	font-size: 12.5px;
	color: #d4a96a;
	line-height: 1.45;
	font-weight: 500;
	letter-spacing: 0.02em;
}