/* ==========================================================================
   Front Page
   ========================================================================== */

/* Hero */

.hero {
	position: relative;
	overflow: hidden;
	color: var(--color-white);
	padding: clamp(150px, 22vw, 300px) 0 clamp(80px, 10vw, 140px);
	min-height: 640px;
}

.hero__video {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.hero__video-el {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center bottom;
}

.hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgb(0 0 0 / 72%) 0%, rgb(45 52 62 / 60%) 55%, rgb(49 66 119 / 65%) 100%);
}

.hero__inner {
	position: relative;
	z-index: 1;
	max-width: var(--container-max);
}

.hero__content {
	display: flex;
	flex-direction: column;
	gap: 16px;
	align-items: flex-start;
}

.hero__title {
	display: flex;
	flex-direction: column;
	margin: 0;
	font-size: clamp(26px, 4.5vw + 0.5rem, 48px);
	font-weight: 700;
	line-height: 1.35;
	letter-spacing: -0.02em;
}

.hero__desc {
	margin: 0 0 42px;
	font-size: clamp(15px, 1.5vw + 0.75rem, 20px);
	line-height: 1.65;
	letter-spacing: -0.01em;
	color: rgba(255, 255, 255, 0.85);
	max-width: 640px;
}

/* CEO Message */

.ceo-message {
	overflow: hidden;
}

.ceo-message__inner {
	display: grid;
	grid-template-columns: minmax(320px, 47%) 1fr;
	min-height: 771px;
}

.ceo-message__media {
	min-height: 500px;
	overflow: hidden;
}

.ceo-message__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ceo-message__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 8px;
	padding: clamp(48px, 8vw, 80px) clamp(32px, 6vw, 80px);
}

.ceo-message__title {
	margin: 0 0 24px;
	font-size: clamp(26px, 4vw + 0.5rem, 48px);
	font-weight: 700;
	line-height: 1.35;
	letter-spacing: -0.02em;
}

.ceo-message__text {
	max-width: 698px;
	font-size: clamp(15px, 1vw + 0.75rem, 20px);
	font-weight: 500;
	line-height: 1.65;
	letter-spacing: -0.01em;
	color: var(--color-text-secondary);
}

.ceo-message__text p + p {
	margin-top: 1.2em;
}

/* Location */

.location {
	padding: clamp(64px, 10vw, 114px) 0;
}

.location__card {
	display: flex;
	flex-direction: column;
	gap: 24px;
	width: 100%;
}

.location__map {
	width: 100%;
	height: 450px;
	border-radius: var(--radius-lg);
	overflow: hidden;
}

.location__map iframe {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}

.location__title {
	margin: 0 0 12px;
	font-size: clamp(22px, 2.5vw + 0.75rem, 32px);
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: -0.02em;
}

.location__address {
	margin-bottom: 42px;
	font-size: clamp(15px, 1vw + 0.75rem, 20px);
	font-weight: 500;
	line-height: 1.6;
	letter-spacing: -0.01em;
	color: var(--color-text-secondary);
}

@media (max-width: 1024px) {
	.ceo-message__inner {
		grid-template-columns: 1fr;
		min-height: auto;
	}

	.ceo-message__media {
		min-height: 360px;
	}
}

@media (max-width: 768px) {
	.hero {
		display: flex;
		align-items: center;
		padding: 0;
		min-height: 550px;
	}

	.hero__content {
		gap: 12px;
	}

	.hero__desc {
		margin-bottom: 28px;
	}

	.hero .btn--lg {
		padding: 14px 18px;
		font-size: 16px;
	}

	.location {
		padding: 56px 0;
	}

	.ceo-message__content {
		padding: 40px 20px;
	}

	.ceo-message__title {
		margin-bottom: 18px;
	}

	.location__address {
		margin-bottom: 24px;
	}

	.location__map {
		height: 280px;
	}

	.front-page .btn--sm {
		padding: 11px 14px;
		font-size: 15px;
	}
}

@media (max-width: 480px) {
	.hero {
		min-height: 550px;
	}

	.hero__title {
		font-size: 28px;
	}

	.hero__desc {
		font-size: 15px;
		margin-bottom: 24px;
	}

	.location__title {
		font-size: 21px;
	}

	.ceo-message__text,
	.location__address {
		font-size: 15px;
	}

	.ceo-message__title {
		font-size: 24px;
	}

	.ceo-message__content {
		padding: 32px 20px;
	}

	.location__map {
		height: 240px;
		border-radius: 16px;
	}

}
