/**
 * EMPORAS — About Page
 * @package EMPORAS
 */

/* HERO */
.about-hero {
	background: linear-gradient(135deg, var(--emporas-navy-dark), var(--emporas-navy));
	color: var(--white);
	padding: 100px 0;
	position: relative;
	overflow: hidden;
}
.about-hero::before {
	content: '';
	position: absolute;
	top: 0; left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(to right, var(--emporas-steel-light), var(--emporas-navy-light));
}
.about-hero__content { max-width: 900px; }
.about-hero__eyebrow {
	color: var(--emporas-steel-light) !important;
	margin-bottom: 16px !important;
}
.about-hero__title {
	font-family: var(--font-display);
	font-size: 56px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--white);
	margin: 0 0 24px;
	line-height: 1.1;
}
.about-hero__lead {
	font-size: 19px;
	line-height: 1.6;
	opacity: 0.85;
	margin: 0;
	max-width: 760px;
}

/* STORY */
.about-story__grid {
	display: grid;
	grid-template-columns: 1.3fr 1fr;
	gap: 64px;
	align-items: center;
}
.about-story__title {
	font-family: var(--font-display);
	font-size: 38px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin: 0 0 24px;
	line-height: 1.1;
}
.about-story__text-content {
	font-size: 16px;
	color: var(--graphite);
	line-height: 1.8;
}
.about-story__text-content p { margin: 0 0 16px; }
.about-story__text-content p:last-child { margin: 0; }
.about-story__visual {
	background: linear-gradient(135deg, var(--emporas-navy-dark), var(--emporas-navy));
	border-radius: var(--radius-lg);
	height: 480px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255,255,255,0.15);
	overflow: hidden;
}
.about-story__image { width: 100%; height: 100%; object-fit: cover; }

/* VALUES */
.about-values { background: var(--light-grey); }
.about-values__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}
.about-value {
	background: var(--white);
	padding: 32px;
	border-radius: var(--radius-md);
	border: 1px solid var(--concrete);
	transition: all 0.2s ease;
}
.about-value:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 24px rgba(30, 42, 94, 0.1);
	border-color: var(--emporas-navy);
}
.about-value__icon {
	width: 56px;
	height: 56px;
	background: var(--emporas-navy);
	color: var(--white);
	border-radius: var(--radius-md);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}
.about-value__title {
	font-family: var(--font-display);
	font-size: 22px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin: 0 0 12px;
}
.about-value p {
	font-size: 14px;
	color: var(--graphite);
	line-height: 1.6;
	margin: 0;
}

/* BRANDS */
.about-brands__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}
.about-brands__grid--1 { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
.about-brands__grid--2 { grid-template-columns: repeat(2, 1fr); }
.about-brands__grid--4,
.about-brands__grid--5,
.about-brands__grid--6 { grid-template-columns: repeat(3, 1fr); }
.about-brand-card {
	background: var(--white);
	padding: 40px;
	border-radius: var(--radius-md);
	border: 1px solid var(--concrete);
	border-left: 4px solid var(--emporas-navy);
	transition: all 0.2s ease;
}
.about-brand-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 24px rgba(30, 42, 94, 0.12);
}
.about-brand-card__image {
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	margin-bottom: 20px;
}
.about-brand-card__image img {
	max-height: 80px;
	max-width: 200px;
	width: auto;
	height: auto;
	object-fit: contain;
}
.about-brand-card__logo {
	font-family: var(--font-display);
	font-size: 32px;
	font-weight: 800;
	letter-spacing: 2px;
	color: var(--emporas-navy);
	margin-bottom: 16px;
}
.about-brand-card__name {
	font-family: var(--font-display);
	font-size: 22px;
	font-weight: 700;
	margin: 0 0 16px;
	letter-spacing: 0.5px;
}
.about-brand-card p {
	font-size: 14px;
	color: var(--graphite);
	line-height: 1.6;
	margin: 0;
}

/* TIMELINE */
.about-timeline { background: var(--light-grey); }
.timeline {
	position: relative;
	padding-left: 32px;
}
.timeline::before {
	content: '';
	position: absolute;
	left: 8px;
	top: 12px;
	bottom: 12px;
	width: 2px;
	background: var(--concrete);
}
.timeline__item {
	display: grid;
	grid-template-columns: 120px 1fr;
	gap: 32px;
	margin-bottom: 48px;
	position: relative;
}
.timeline__item:last-child { margin-bottom: 0; }
.timeline__item::before {
	content: '';
	position: absolute;
	left: -32px;
	top: 8px;
	width: 18px;
	height: 18px;
	background: var(--emporas-navy);
	border-radius: 50%;
	border: 4px solid var(--light-grey);
	z-index: 2;
}
.timeline__year {
	font-family: var(--font-display);
	font-size: 48px;
	font-weight: 800;
	color: var(--emporas-navy);
	line-height: 1;
}
.timeline__content {
	padding-top: 8px;
}
.timeline__title {
	font-family: var(--font-display);
	font-size: 22px;
	font-weight: 700;
	margin: 0 0 8px;
	letter-spacing: 0.5px;
}
.timeline__content p {
	font-size: 15px;
	color: var(--graphite);
	line-height: 1.6;
	margin: 0;
}

/* CTA */
.about-cta {
	background: var(--charcoal);
	color: var(--white);
	padding: 100px 0;
	text-align: center;
}
.about-cta__inner { max-width: 700px; margin: 0 auto; }
.about-cta__title {
	font-family: var(--font-display);
	font-size: 42px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--white);
	margin: 0 0 16px;
	line-height: 1.1;
}
.about-cta p {
	font-size: 17px;
	opacity: 0.85;
	margin: 0 0 32px;
	line-height: 1.6;
}
.about-cta__buttons {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
	.about-hero__title { font-size: 38px; }
	.about-story__grid { grid-template-columns: 1fr; gap: 32px; }
	.about-story__visual { height: 320px; }
	.about-values__grid { grid-template-columns: repeat(2, 1fr); }
	.about-brands__grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
	.about-hero { padding: 60px 0; }
	.about-hero__title { font-size: 28px; }
	.about-hero__lead { font-size: 16px; }
	.about-values__grid { grid-template-columns: 1fr; }
	.timeline__item { grid-template-columns: 1fr; gap: 8px; }
	.timeline__year { font-size: 32px; }
	.about-cta { padding: 60px 0; }
	.about-cta__title { font-size: 28px; }
}
