/*
 * Blanky Work – About Page
 *
 * @package blanky-work
 */

/* --------------------------------------------------
   Shared Section Eyebrow / Heading
   （パターン内の section-eyebrow / section-heading 用）
-------------------------------------------------- */
.section-eyebrow {
	font-family: var(--work-font-sans);
	font-size: 1rem;
	font-weight: 600;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--work-muted-gold-text);
	margin-bottom: 1.25rem;
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.section-eyebrow::before {
	content: '';
	display: block;
	width: 2rem;
	height: 1px;
	background: var(--work-muted-gold);
	flex-shrink: 0;
}

.section-heading {
	font-family: var(--work-font-serif);
	font-size: clamp(1.75rem, 3.5vw, 2.5rem);
	font-weight: 400;
	line-height: 1.3;
}

.section-heading em {
	font-style: italic;
	font-weight: 300;
}

/* --------------------------------------------------
   About Mission
-------------------------------------------------- */
.work-about-mission {
	padding: 7rem 2rem;
	background: var(--work-white);
	position: relative;
	overflow: hidden;
}

.work-about-mission::before {
	content: '';
	position: absolute;
	top: 0;
	left: 2rem;
	width: 1px;
	height: 100%;
	background: linear-gradient(
		to bottom,
		transparent,
		rgba(184, 156, 111, 0.25),
		transparent
	);
	pointer-events: none;
}

.work-about-mission-inner {
	max-width: var(--work-max-w);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr;
	gap: 5rem;
	align-items: center;
}

.work-about-mission-image-wrap {
	position: relative;
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.08);
}

.work-about-mission-image {
	margin: 0;
	overflow: hidden;
}

.work-about-mission-image img {
	width: 100%;
	height: auto;
	aspect-ratio: 3 / 4;
	object-fit: cover;
	display: block;
	filter: sepia(0.35) contrast(1.02) brightness(0.97);
	transition: filter 0.6s ease;
}

.work-about-mission-image-wrap:hover .work-about-mission-image img {
	filter: sepia(0.05) contrast(1.02) brightness(1);
}

.work-about-mission-badge {
	position: absolute;
	bottom: -1.5rem;
	right: -1.5rem;
	padding: 2rem 2.5rem;
	background: var(--work-muted-gold);
	color: var(--work-white);
	display: none;
}

.work-about-mission-badge-num {
	font-family: var(--work-font-serif);
	font-size: 2.5rem;
	line-height: 1;
	margin-bottom: 0.25rem;
}

.work-about-mission-badge-label {
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	opacity: 0.85;
}

.work-about-mission-content {
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
}

.work-about-mission-quote {
	font-family: var(--work-font-serif);
	font-style: italic;
	font-size: 1.35rem;
	line-height: 1.75;
	color: var(--work-text-muted);
	border-left: 1px solid rgba(184, 156, 111, 0.4);
	padding-left: 2rem;
	margin: 0;
}

.work-about-mission-quote cite {
	font-size: 1rem;
	font-weight: 400;
	font-style: normal;
	display: block;
	margin-top: 1rem;
}

.work-about-mission-body {
	font-size: 1rem;
	font-weight: 400;
	color: var(--work-text-muted);
	line-height: 1.85;
	padding-left: 2rem;
}

/* --------------------------------------------------
   About Values
-------------------------------------------------- */
.work-about-values {
	padding: 7rem 2rem;
	background: var(--work-off-white);
}

.work-about-values-inner {
	max-width: var(--work-max-w);
	margin: 0 auto;
}

.work-about-values-header {
	margin-bottom: 4rem;
}

.work-about-values-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0;
	border-top: 1px solid var(--work-border-gold);
}

.work-about-value-item {
	padding: 3rem 0;
	border-bottom: 1px solid var(--work-border-gold);
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	transition: padding-left 0.3s ease;
}

.work-about-value-item:hover {
	padding-left: 1rem;
}

.work-about-value-num {
	font-size: 0.75rem;
	font-weight: 300;
	letter-spacing: 0.4em;
	color: var(--work-muted-gold-text);
	text-transform: uppercase;
}

.work-about-value-title {
	font-family: var(--work-font-serif);
	font-size: 1.75rem;
	font-weight: 400;
	line-height: 1.2;
}

.work-about-value-desc {
	font-size: 1rem;
	font-weight: 400;
	color: var(--work-text-muted);
	line-height: 1.85;
}

/* --------------------------------------------------
   About History
-------------------------------------------------- */
.work-about-history {
	padding: 7rem 2rem;
	background: var(--work-white);
	position: relative;
	overflow: hidden;
}

.work-about-history::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(to right, transparent, rgba(184, 156, 111, 0.3), transparent);
	pointer-events: none;
}

.work-about-history-inner {
	max-width: 900px;
	margin: 0 auto;
}

.work-about-history-header {
	margin-bottom: 4rem;
}

.work-about-history-list {
	position: relative;
}

.work-about-history-list::before {
	content: '';
	position: absolute;
	top: 0;
	left: 5rem;
	width: 1px;
	height: 100%;
	background: var(--work-border-gold);
}

.work-about-history-item {
	display: grid;
	grid-template-columns: 5rem 1fr;
	gap: 2rem;
	padding-bottom: 3rem;
	position: relative;
}

.work-about-history-item:last-child {
	padding-bottom: 0;
}

.work-about-history-item::after {
	content: '';
	position: absolute;
	top: 0.4rem;
	left: calc(5rem - 3px);
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--work-muted-gold);
}

.work-about-history-year {
	font-family: var(--work-font-serif);
	font-size: 1rem;
	font-weight: 400;
	color: var(--work-muted-gold-text);
	letter-spacing: 0.1em;
	padding-top: 0.1rem;
}

.work-about-history-event p {
	font-size: 1rem;
	font-weight: 400;
	color: var(--work-text-muted);
	line-height: 1.8;
}

.work-about-history-event strong {
	display: block;
	font-weight: 600;
	color: var(--work-deep-navy);
	margin-bottom: 0.35rem;
	font-size: 1rem;
}

/* --------------------------------------------------
   About Office
-------------------------------------------------- */
.work-about-office {
	padding: 7rem 2rem;
	background: var(--work-off-white);
}

.work-about-office-inner {
	max-width: var(--work-max-w);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr;
	gap: 4rem;
}

.work-about-office-header {
	margin-bottom: 2rem;
}

.work-about-office-map {
	aspect-ratio: 16 / 9;
	background: rgba(var(--work-deep-navy-rgb), 0.05);
	overflow: hidden;
	position: relative;
	box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
}

.work-about-office-map iframe {
	width: 100%;
	height: 100%;
	border: 0;
}

.work-about-office-details {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.work-about-office-detail-item {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	padding-bottom: 2rem;
	padding-top: 0.5rem;
	border-bottom: 1px solid var(--work-border-gold);
}

.work-about-office-detail-item:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.work-about-office-detail-label {
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--work-muted-gold-text);
	margin-bottom: 0.3rem;
}

.work-about-office-detail-value {
	font-size: 1.0625rem;
	font-weight: 400;
	color: var(--work-deep-navy);
	line-height: 1.7;
}

.work-about-office-detail-value a {
	color: var(--work-deep-navy);
	border-bottom: 1px solid var(--work-border-gold);
	transition: color 0.2s, border-color 0.2s;
}

.work-about-office-detail-value a:hover {
	color: var(--work-muted-gold);
	border-color: var(--work-muted-gold);
}

/* --------------------------------------------------
   Responsive
-------------------------------------------------- */
@media (min-width: 768px) {
	.work-about-value-item {
		grid-template-columns: 5rem 1fr 2fr;
		align-items: start;
		gap: 3rem;
	}
}

@media (min-width: 1024px) {
	.work-about-mission {
		padding: 9rem 4rem;
	}

	.work-about-mission::before {
		left: 4rem;
	}

	.work-about-mission-inner {
		grid-template-columns: 1fr 1fr;
		gap: 7rem;
	}

	.work-about-mission-badge {
		display: block;
	}

	.work-about-values {
		padding: 9rem 4rem;
	}

	.work-about-history {
		padding: 9rem 4rem;
	}

	.work-about-office {
		padding: 9rem 4rem;
	}

	.work-about-office-inner {
		grid-template-columns: 1fr 1fr;
	}
}
