/* About Us page — scoped under .pg-about (Figma node 1:5477) */

.pg-about { color: var(--color-text); }
.pg-about img { max-width: 100%; }

/* Breadcrumb */
.pg-about .about-breadcrumb {
	max-width: var(--container-max);
	margin: 22px auto 0;
	padding: 0 20px;
	font-size: 12px;
	letter-spacing: 0.36px;
}
.pg-about .about-breadcrumb a { color: rgba(0, 0, 0, 0.5); text-decoration: none; }
.pg-about .about-breadcrumb span { color: #000; }

/* Page title */
.pg-about .about-title {
	font-family: var(--font-heading);
	font-weight: 400;
	font-size: 34px;
	text-align: center;
	margin: 55px 0 50px;
}

/* Generic content block */
.pg-about .about-block {
	max-width: var(--container-max);
	margin: 0 auto;
	padding: 0 20px 45px;
}
.pg-about .about-block__title {
	font-family: var(--font-heading);
	font-weight: 400;
	font-size: 24px;
	margin: 0 0 18px;
}
.pg-about .about-block__text {
	font-size: 16px;
	line-height: 1.5;
	letter-spacing: 0.48px;
	color: #242424;
	text-transform: capitalize;
	max-width: 1280px;
}

/* Our Promise — text left, image card right */
.pg-about .about-promise__grid {
	display: grid;
	grid-template-columns: 1fr 588px;
	gap: 40px;
	align-items: start;
}
.pg-about .about-promise__text { max-width: 625px; }
.pg-about .about-promise__card {
	border: 1px solid var(--color-border);
	border-radius: 10px;
	background: #fff;
	overflow: hidden;
	height: 271px;
}
.pg-about .about-promise__card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Design & Craftmanship bordered section */
.pg-about .about-craft {
	max-width: var(--container-max);
	margin: 0 auto 25px;
	padding: 0 20px;
}
.pg-about .about-craft__box {
	border: 1px solid #000;
	border-radius: 8px;
	overflow: hidden;
}
.pg-about .about-bar {
	background: #000;
	color: #fff;
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 15px 25px;
	min-height: 60px;
	box-sizing: border-box;
}
.pg-about .about-bar img { width: 30px; height: 30px; flex-shrink: 0; }
.pg-about .about-bar__title {
	font-family: var(--font-heading);
	font-weight: 400;
	font-size: 20px;
	color: #fff;
	margin: 0;
}
.pg-about .about-craft__body { padding: 30px; }
.pg-about .about-craft__intro {
	font-size: 16px;
	line-height: 1.5;
	letter-spacing: 0.48px;
	color: #242424;
	text-transform: capitalize;
	margin: 0 0 30px;
}

/* Two-up steps grid */
.pg-about .about-steps {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px 40px;
}
.pg-about .about-step__media {
	background: #d9d9d9;
	border: 1px solid var(--color-border);
	border-radius: 6px;
	overflow: hidden;
	aspect-ratio: 590 / 326;
}
.pg-about .about-step__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.pg-about .about-step__title {
	font-family: var(--font-heading);
	font-weight: 400;
	font-size: 22px;
	margin: 20px 0 10px;
}
.pg-about .about-step__text {
	font-size: 16px;
	line-height: 1.5;
	letter-spacing: 0.48px;
	color: #242424;
	text-transform: capitalize;
	margin: 0;
}

/* Collapsible accordion bars (Collections / Why) */
.pg-about .about-accordion {
	max-width: var(--container-max);
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.pg-about .about-accordion .about-bar { border-radius: 8px; }

/* Image strip */
.pg-about .about-strip {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	margin-top: 50px;
}
.pg-about .about-strip img {
	width: 100%;
	height: 401px;
	object-fit: cover;
	display: block;
}

/* Responsive */
@media (max-width: 1024px) {
	.pg-about .about-promise__grid {
		grid-template-columns: 1fr;
	}
	.pg-about .about-promise__card { height: auto; aspect-ratio: 588 / 271; }
	.pg-about .about-strip { grid-template-columns: repeat(3, 1fr); }
	.pg-about .about-strip img { height: 300px; }
}

@media (max-width: 640px) {
	.pg-about .about-title { font-size: 26px; margin: 35px 0 30px; }
	.pg-about .about-block__title { font-size: 20px; }
	.pg-about .about-steps { grid-template-columns: 1fr; }
	.pg-about .about-craft__body { padding: 20px; }
	.pg-about .about-bar { padding: 15px; gap: 12px; }
	.pg-about .about-bar__title { font-size: 17px; }
	.pg-about .about-strip { grid-template-columns: repeat(2, 1fr); }
	.pg-about .about-strip img { height: 220px; }
}
