@font-face {
	font-family: 'Design Symbols';
	src: url('../fonts/design-symbols.woff2') format('woff2');
	font-weight: normal;
	font-style: normal;
	font-display: block;
}

.about-section {
	position: relative;
	padding: 90px 0 104px;
	background: #f7f7f7 url('../images/about-architecture.png') no-repeat left bottom;
	color: #202020;
	overflow: hidden;
}

.about-section::before {
	content: '';
	position: absolute;
	top: 40px;
	left: max(20px, calc((100% - 1410px) / 2 - 62px));
	width: 540px;
	height: 320px;
	background: url('../images/drafting-guides.svg') no-repeat;
	pointer-events: none;
}

.about-intro {
	position: relative;
	display: grid;
	grid-template-columns: 30% 70%;
	width: min(1410px, calc(100% - 140px));
	margin: 0 auto 60px;
}

.about-label { padding-top: 0; }

.section-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 6px 13px;
	border: 1px solid #dedede;
	border-radius: 30px;
	font-size: 12px;
	font-weight: 500;
	line-height: 17px;
}

.section-eyebrow::before {
	content: '';
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--gold);
}

.about-copy h2 {
	max-width: 880px;
	margin: 0;
	font: 400 60px/1.067 var(--heading);
	letter-spacing: -1.2px;
}

.about-copy h2 span { color: var(--gold); }

.about-copy > p {
	max-width: 610px;
	margin: 32px 0 0;
	color: #59585d;
	font-size: 16px;
	line-height: 24px;
}

.service-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 30px;
	width: calc(100% - 140px);
	margin: 0 auto;
}

.service-card {
	display: flex;
	flex-direction: column;
	min-height: 354px;
	padding: 38px 40px 43px;
	border-radius: 24px;
	background: #fff;
}

.service-card-heading {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 20px;
	min-height: 150px;
}

.service-card h3 {
	margin: 0;
	font: 400 30px/1.067 var(--heading);
	letter-spacing: -.6px;
}

.service-symbol {
	flex-shrink: 0;
	width: 52px;
	height: 52px;
	color: var(--gold);
	font: 52px/1 'Design Symbols';
}

.symbol-architecture::before { content: '\e003'; }
.symbol-interior::before { content: '\e016'; }
.symbol-consulting::before { content: '\e00d'; }
.symbol-management::before { content: '\e019'; }

.service-card > p {
	margin: 0;
	padding-top: 26px;
	border-top: 1px solid #e0e0e5;
	color: #59585d;
	font-size: 16px;
	line-height: 24px;
}

/* Elements remain readable if scripting is unavailable. */
@media (prefers-reduced-motion: no-preference) {
	.about-section.reveal-ready [data-reveal] {
		opacity: 0;
		transform: translateX(-55px);
		transition: opacity .8s ease, transform .9s cubic-bezier(.22, 1, .36, 1);
	}
	.about-section.reveal-ready .about-copy { transform: translateX(55px); }
	.about-section.reveal-ready .service-card:nth-child(2) { transition-delay: .12s; }
	.about-section.reveal-ready .service-card:nth-child(3) { transition-delay: .24s; }
	.about-section.reveal-ready .service-card:nth-child(4) { transition-delay: .36s; }
	.about-section.reveal-ready .is-revealed { opacity: 1; transform: none; }
}

@media (max-width: 1599px) {
	.about-section::before { left: 20px; opacity: .6; }
	.about-intro, .service-grid { width: calc(100% - 80px); }
	.about-copy h2 { font-size: 54px; }
	.service-grid { gap: 24px; }
	.service-card { padding: 32px 26px; }
	.service-card h3 { font-size: 26px; }
	.service-card-heading { gap: 12px; }
	.service-symbol { width: 44px; height: 44px; font-size: 44px; }
}

@media (max-width: 1199px) {
	.about-intro { grid-template-columns: 25% 75%; }
	.about-copy h2 { font-size: 48px; }
	.service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.service-card { min-height: 320px; padding: 36px; }
	.service-card-heading { min-height: 130px; }
	.service-card h3 { font-size: 30px; }
	.service-symbol { width: 52px; height: 52px; font-size: 52px; }
}

@media (max-width: 767px) {
	.about-section::before { display: none; }
	.about-section { padding: 65px 0; background-size: auto 85%; }
	.about-intro, .service-grid { width: calc(100% - 40px); }
	.about-intro { grid-template-columns: 1fr; gap: 28px; margin-bottom: 38px; }
	.about-copy h2 { font-size: clamp(36px, 7vw, 48px); letter-spacing: -.7px; }
	.about-copy > p { margin-top: 24px; }
	.service-grid { grid-template-columns: 1fr; gap: 20px; }
	.service-card { min-height: 305px; padding: 32px; }
	.service-card-heading { min-height: 125px; }
}
