.why-different {
	background: #ffffff;
	color: #1E1E1E;
	padding: 160px 0 100px;
}

/* Header now uses the shared .section-header component (assets/css/main.css)
   with section-scoped overrides for the accent colours + headline scale this
   section had before the refactor. */
.why-different .section-header { margin-bottom: 80px; }
.why-different .section-header__eyebrow { color: #794332; }
.why-different .section-header__headline { color: #154533; }
.why-different .section-header__headline-accent { color: #936900; }
.why-different .section-header__copy { font-size: 17px; max-width: 640px; }

.why-different__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	border-left: none;
	border-right: none;
	padding-top: 28px;
	padding-bottom: 28px;
	margin-bottom: 80px;
}

.pillar {
	padding: 40px 28px;
}
.pillar:not(:last-child) {
	border-right: 1px solid rgba(0, 0, 0, 0.1);
}
.pillar__number {
	display: block;
	font-family: var(--font-serif);
	font-size: 30px;
	color: #9A6E00;
	margin-bottom: 20px;
}
.pillar__title { font-size: 18px; text-transform: uppercase; letter-spacing: 1px; color: #191919; margin-bottom: 12px; }
.pillar__body { color: #595959; font-size: 14px; margin-bottom: 16px; }

.founder-bar {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 32px;
	padding: 0;
}
.founder-bar__portrait-wrap { flex-shrink: 0; }
.founder-bar__portrait { width: 124px; height: 130px; border-radius: 0; object-fit: cover; display: block; }
.founder-bar__portrait--placeholder { background: var(--border-dark); }
.founder-bar__quote { font-family: var(--font-serif); font-style: normal; font-size: 30px; margin-bottom: 12px; }
.founder-bar__name { font-size: 14px; text-transform: uppercase; color: #1E1E1E; font-weight: 500; margin: 0; }
.founder-bar__title { color: #936900; font-size: 12px; text-transform: uppercase; letter-spacing: 1px; margin: 0; }

@media (max-width: 1024px) {
	.why-different__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
	.founder-bar { grid-template-columns: 1fr; text-align: center; justify-items: center; }
}
@media (max-width: 480px) {
	.why-different__grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
	.why-different { padding: 40px 0; }
	.why-different .section-header { margin-bottom: 40px; }
	.pillar { padding: 16px 0; }
	.pillar:not(:last-child) { border-right: none; border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
}
