/* Company Profile pages — page-company-en.php / page-company-jp.php */

.section-label {
	font-size: 13px;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--c-gold-dark);
	margin: 0 0 36px;
	font-family: var(--font-sans);
	font-weight: 600;
}

.company-info {
	display: flex;
	flex-direction: column;
}

.company-info__row {
	display: grid;
	grid-template-columns: 240px 1fr;
	padding: 20px 0;
	border-bottom: 1px solid var(--c-border);
	gap: 12px;
}

.company-info__label {
	font-size: 14px;
	color: var(--c-cream);
	font-weight: 600;
}

.company-info__value {
	font-size: 14px;
	color: rgba(233, 228, 216, 0.75);
}

.founder-story {
	padding-top: 120px;
	padding-bottom: 140px;
}

.founder-story__intro {
	text-align: center;
}

.founder-story__badge {
	width: 290px;
	height: 320px;
	margin: 0 auto 32px;
	background: radial-gradient(circle at 38% 32%, #1a2e46 0%, var(--c-navy) 62%, var(--c-navy-darkest) 100%);
	border: 1px solid var(--c-gold-dark);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.founder-story__badge-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.vision-section__layout {
	display: grid;
	grid-template-columns: 320px 1fr;
	gap: 72px;
	align-items: start;
}

.founder-story__signature {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	margin: 0 auto;
}

.vision-section__body .founder-story__signature {
	justify-content: flex-end;
	margin: 24px 0 0;
}

.founder-story__signature-img {
	height: 74px;
	width: auto;
}

.founder-story__signature-title {
	font-size: 22px;
	letter-spacing: 0.04em;
	color: #fff;
	font-family: var(--font-sans);
	font-weight: 400;
}

.founder-story__blocks {
	display: flex;
	flex-direction: column;
	gap: 88px;
}

.founder-story__block-title {
	font-size: 26px;
	margin: 10px 0 26px;
	padding-bottom: 14px;
	border-bottom: 1px solid var(--c-gold);
	display: inline-block;
}

.founder-story__p {
	font-size: 15.5px;
	color: rgba(233, 228, 216, 0.82);
	line-height: 2;
	margin: 0 0 18px;
}

.founder-story__p:last-child {
	margin-bottom: 0;
}

/* Japanese page: swap font stacks */
body.lang-jp {
	font-family: var(--font-sans-jp);
}

body.lang-jp .company-info__label,
body.lang-jp .company-info__value {
	font-size: 15.5px;
	font-family: var(--font-sans-jp);
}

body.lang-jp h1,
body.lang-jp h2,
body.lang-jp h3,
body.lang-jp h4,
body.lang-jp .site-footer__logo,
body.lang-jp .founder-story__block-title {
	font-family: var(--font-serif-jp);
}

@media (max-width: 640px) {
	.company-info__row {
		grid-template-columns: 1fr;
		gap: 4px;
	}
}

@media (max-width: 900px) {
	.vision-section__layout {
		grid-template-columns: 1fr;
		gap: 40px;
	}
}
