/**
 * About Page Styles - Bonebana
 * Matches Figma editorial design specs
 */

/* ═══ 1. BREADCRUMBS ═══════════════════════════════════════════════════ */
.bb-about-breadcrumbs {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 11px;
	font-weight: 400;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #6B6862;
	margin-top: 0;
	padding-top: 1.5rem;
	margin-bottom: 2rem;
}

.bb-about-breadcrumbs a {
	color: #6B6862;
	text-decoration: none;
	transition: color 0.2s ease;
}

.bb-about-breadcrumbs a:hover {
	color: #121212;
}

.bb-about-page {
	padding-bottom: 6rem;
}

/* ═══ 2. HERO SECTION ══════════════════════════════════════════════════ */
.bb-about-hero-section {
	margin-bottom: 4.5rem;
}

.bb-about-hero-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 3rem;
	margin-bottom: 2.5rem;
}

.bb-about-hero-title {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 24px;
	font-weight: 400;
	line-height: 32px;
	color: #121212;
	margin: 0;
	letter-spacing: 0;
	max-width: 320px;
	flex-shrink: 0;
}

.bb-about-hero-desc {
	max-width: 656px;
	margin-left: auto;
}

.bb-about-hero-desc p {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 12px;
	font-weight: 300;
	line-height: 20px;
	color: #393939;
	margin: 0;
	letter-spacing: 0;
}

.bb-about-hero-media-wrap,
.bb-about-hero-image-wrap {
	width: 100%;
	aspect-ratio: 1408 / 704;
	max-height: 704px;
	overflow: hidden;
	background-color: #1A1A1A;
	position: relative;
}

.bb-about-video-container {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #000000;
	cursor: pointer;
}

.bb-about-hero-video,
.bb-about-hero-img,
.bb-about-hero-iframe {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	border: none;
}

/* Video Play / Pause Button Overlay (Figma Spec) */
.bb-about-video-play-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.45);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: #FFFFFF;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	z-index: 10;
	padding: 0;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.bb-about-video-play-btn svg {
	width: 22px;
	height: 22px;
	fill: #FFFFFF;
	transition: transform 0.2s ease;
}

.bb-about-video-play-btn .bb-play-icon {
	margin-left: 3px;
}

.bb-about-video-play-btn .bb-pause-icon {
	display: none;
}

.bb-about-video-play-btn:hover {
	transform: translate(-50%, -50%) scale(1.1);
	background: rgba(0, 0, 0, 0.75);
}

/* Play/Pause state toggles */
.bb-about-video-container.is-playing .bb-play-icon {
	display: none;
}

.bb-about-video-container.is-playing .bb-pause-icon {
	display: block;
}

.bb-about-video-container.is-playing .bb-about-video-play-btn {
	opacity: 0;
	pointer-events: none;
}

.bb-about-video-container.is-playing:hover .bb-about-video-play-btn {
	opacity: 1;
	pointer-events: auto;
}

.bb-about-video-container.is-paused .bb-about-video-play-btn {
	opacity: 1;
	pointer-events: auto;
}

/* ═══ 3. MANIFESTO / ORIGIN SECTION ════════════════════════════════════ */
.bb-about-manifesto-section {
	padding: 4.5rem 0;
	margin-bottom: 4.5rem;
	border-top: 1px solid #ECE9E3;
	border-bottom: 1px solid #ECE9E3;
}

.bb-about-manifesto-grid {
	display: grid;
	grid-template-columns: 240px 1fr;
	gap: 3rem;
	align-items: flex-start;
}

.bb-about-manifesto-sidebar {
	padding-top: 6px;
}

.bb-about-section-tag {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 13px;
	font-weight: 400;
	color: #121212;
	display: inline-block;
	letter-spacing: 0;
	text-transform: none;
}

.bb-about-manifesto-content {
	max-width: 928px;
}

.bb-about-manifesto-quote {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 32px;
	line-height: 48px;
	font-style: normal;
	font-weight: 300;
	color: #121212;
	letter-spacing: 0;
	margin: 0;
}

/* ═══ 4. MIDDLE BANNER SECTION ═════════════════════════════════════════ */
.bb-about-middle-banner-section {
	margin-bottom: 5.5rem;
}

.bb-about-middle-banner-wrap {
	width: 100%;
	aspect-ratio: 1408 / 640;
	max-height: 640px;
	overflow: hidden;
	background-color: #ECE9E3;
}

.bb-about-middle-banner-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* ═══ 5. SERVICES & TRUST INFO SECTION ═════════════════════════════════ */
.bb-about-services-section {
	margin-bottom: 5rem;
}

.bb-about-services-list {
	display: flex;
	flex-direction: column;
	border-top: 1px solid #ECE9E3;
}

.bb-about-service-row {
	display: grid;
	grid-template-columns: 404px 1fr;
	gap: 2rem;
	padding: 2.25rem 0;
	border-bottom: 1px solid #ECE9E3;
	align-items: flex-start;
}

.bb-about-service-label span {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 22px;
	color: #121212;
	opacity: 0.4;
	text-transform: uppercase;
	display: block;
	letter-spacing: 0;
}

.bb-about-service-content {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.bb-service-item {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
}

.bb-service-main {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 22px;
	color: #121212;
}

.bb-service-sub {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 12px;
	font-weight: 300;
	line-height: 18px;
	color: #767676;
}

.bb-service-features {
	gap: 0.75rem;
}

.bb-service-feature-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 22px;
	color: #121212;
}

.bb-feature-icon {
	color: #121212;
	flex-shrink: 0;
}

/* ═══ 5. EDITORIAL FEATURE BANNER (1440 x 1780) ═══════════════════════ */
.bb-about-feature-banner-section {
	margin-bottom: 5.5rem;
}

.bb-about-feature-banner-wrap {
	width: 100%;
	aspect-ratio: 1440 / 1780;
	max-height: 1780px;
	overflow: hidden;
	background-color: #ECE9E3;
}

.bb-about-feature-banner-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* ═══ 6. JOIN US & CLOSING BANNER ═════════════════════════════════════ */
.bb-about-cta-section {
	margin-bottom: 6rem;
}

.bb-about-cta-header {
	border-top: 1px solid #ECE9E3;
	padding-top: 2rem;
	margin-bottom: 3.5rem;
}

.bb-about-cta-tag {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 13px;
	font-weight: 400;
	color: #121212;
	display: block;
	margin-bottom: 2rem;
	letter-spacing: 0;
}

.bb-about-cta-title {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: clamp(24px, 3.2vw, 32px);
	font-weight: 400;
	line-height: 1.35;
	color: #121212;
	letter-spacing: 0;
	max-width: 960px;
	margin: 0 0 2rem 0;
}

.bb-about-cta-link {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #121212;
	text-decoration: underline;
	text-underline-offset: 4px;
	display: inline-block;
	transition: opacity 0.2s ease;
}

.bb-about-cta-link:hover {
	opacity: 0.7;
	color: #121212;
}

.bb-about-cta-banner {
	width: 100%;
	aspect-ratio: 1440 / 960;
	max-height: 960px;
	overflow: hidden;
	background-color: #ECE9E3;
}

.bb-about-cta-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* ═══ RESPONSIVE BREAKPOINTS ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
	.bb-about-hero-header {
		flex-direction: column;
		gap: 1.5rem;
	}

	.bb-about-hero-title {
		max-width: 100%;
	}

	.bb-about-hero-desc {
		max-width: 100%;
		margin-left: 0;
	}

	.bb-about-manifesto-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.bb-about-manifesto-quote {
		font-size: 24px;
		line-height: 36px;
	}

	.bb-about-middle-banner-section {
		margin-bottom: 3.5rem;
	}

	.bb-about-service-row {
		grid-template-columns: 280px 1fr;
		gap: 1.5rem;
		padding: 2rem 0;
	}

	.bb-about-feature-banner-section {
		margin-bottom: 4rem;
	}

	.bb-about-cta-section {
		margin-bottom: 4rem;
	}

	.bb-about-cta-header {
		margin-bottom: 2.5rem;
	}
}

@media (max-width: 768px) {
	.bb-about-breadcrumbs {
		margin-bottom: 1.5rem;
	}

	.bb-about-hero-section {
		margin-bottom: 3rem;
	}

	.bb-about-hero-media-wrap,
	.bb-about-hero-image-wrap {
		aspect-ratio: 4 / 5;
		max-height: 560px;
	}

	.bb-about-hero-video,
	.bb-about-hero-img,
	.bb-about-hero-iframe {
		object-position: center center;
	}

	.bb-about-manifesto-section {
		padding: 2.5rem 0;
		margin-bottom: 3rem;
	}

	.bb-about-manifesto-quote {
		font-size: 20px;
		line-height: 30px;
	}

	.bb-about-middle-banner-section {
		margin-bottom: 3rem;
	}

	.bb-about-middle-banner-wrap {
		aspect-ratio: auto;
		max-height: none;
		height: auto;
	}

	.bb-about-middle-banner-wrap picture {
		display: block;
		width: 100%;
	}

	.bb-about-middle-banner-img {
		width: 100%;
		height: auto;
		display: block;
	}

	.bb-about-services-section {
		margin-bottom: 3.5rem;
	}

	.bb-about-service-row {
		grid-template-columns: 1fr;
		gap: 0.75rem;
		padding: 1.5rem 0;
	}

	.bb-about-feature-banner-section {
		margin-bottom: 3rem;
	}

	.bb-about-feature-banner-wrap {
		aspect-ratio: auto;
		max-height: none;
		height: auto;
	}

	.bb-about-feature-banner-wrap picture {
		display: block;
		width: 100%;
	}

	.bb-about-feature-banner-img {
		width: 100%;
		height: auto;
		display: block;
	}

	.bb-about-cta-section {
		margin-bottom: 3.5rem;
	}

	.bb-about-cta-title {
		font-size: 20px;
		line-height: 28px;
		margin-bottom: 1.5rem;
	}

	.bb-about-cta-banner {
		aspect-ratio: 4/3;
	}
}
