.yamato-info-page {
	--yamato-info-dark: #040a1c;
	--yamato-info-gold: #9c7f4e;
	--yamato-info-accent: #ca3c3f;
	--yamato-info-muted: #595758;
	--yamato-info-soft: #f7f4ef;
	--yamato-info-teal: #82bbc9;

	position: relative;
	padding: 0 0 clamp(4.5rem, 7vw, 7rem);
	background: #fff;
	color: var(--yamato-info-muted);
	overflow: hidden;
}

.yamato-info-page--empty {
	padding: 2rem;
	text-align: center;
}

/* Decor */

.yamato-info-page__decor {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	overflow: hidden;
}

.yamato-info-page__wave {
	display: block;
	opacity: 0.16;
}

.yamato-info-page__wave svg {
	display: block;
	width: 100%;
	height: auto;
}

.yamato-info-page__wave--top {
	position: absolute;
	top: -3rem;
	right: -14%;
	width: min(44rem, 72vw);
	transform: rotate(-10deg);
}

.yamato-info-page__wave--bottom {
	position: absolute;
	left: -18%;
	bottom: 4rem;
	width: min(38rem, 68vw);
	transform: rotate(12deg);
	opacity: 0.1;
}

.yamato-info-page__decor-icon {
	position: absolute;
	display: block;
	opacity: 0.11;
}

.yamato-info-page__decor-icon--fish {
	top: 6rem;
	right: 2%;
	width: clamp(5rem, 8vw, 7.5rem);
	height: auto;
}

.yamato-info-page__decor-icon--bamboo {
	bottom: 22%;
	left: -1.5rem;
	width: clamp(4.5rem, 7vw, 6.5rem);
	height: auto;
	opacity: 0.09;
}

.yamato-info-page__decor-icon--shrimp {
	top: 42%;
	right: 8%;
	width: clamp(3.5rem, 5vw, 5rem);
	height: auto;
	opacity: 0.14;
}

/* Intro card */

.yamato-info-page__intro-wrap {
	position: relative;
	z-index: 2;
	max-width: 52rem;
	margin: 0 auto clamp(3rem, 5vw, 4.5rem);
}

.yamato-info-page__intro {
	position: relative;
	padding: clamp(1.75rem, 3vw, 2.5rem) clamp(1.75rem, 4vw, 3rem);
	background: linear-gradient(135deg, #fff 0%, var(--yamato-info-soft) 100%);
	border: 1px solid rgba(156, 127, 78, 0.22);
	box-shadow: 0 20px 48px rgba(4, 10, 28, 0.07);
}

.yamato-info-page__intro::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(90deg, var(--yamato-info-gold) 0%, var(--yamato-info-accent) 100%);
}

.yamato-info-page__intro-corner {
	position: absolute;
	top: 1.25rem;
	right: 1.25rem;
	width: 2.75rem;
	height: 2.75rem;
	border-top: 2px solid rgba(156, 127, 78, 0.45);
	border-right: 2px solid rgba(156, 127, 78, 0.45);
}

.yamato-info-page__intro-body {
	position: relative;
	z-index: 1;
	font-size: clamp(1.0625rem, 1.6vw, 1.25rem);
	line-height: 1.78;
	color: var(--yamato-info-muted);
}

.yamato-info-page__intro-body > :first-child {
	margin-top: 0;
}

.yamato-info-page__intro-body > :last-child {
	margin-bottom: 0;
}

.yamato-info-page__intro-body p {
	margin: 0;
}

/* Sections header */

.yamato-info-page__sections-head {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	align-items: start;
	gap: clamp(1.5rem, 3vw, 2.5rem);
	margin-bottom: clamp(2rem, 4vw, 3rem);
	padding-left: clamp(3rem, 7vw, 7.5rem);
}

.yamato-info-page__sections-label {
	position: relative;
	left: auto;
	top: auto;
	margin-top: 0.35rem;
}

.yamato-info-page__sections-lead {
	margin: 0;
	font-family: var(--yamato-font-nav);
	font-size: clamp(1.5rem, 2.5vw, 2rem);
	font-weight: 400;
	line-height: 1.25;
	color: var(--yamato-info-dark);
}

.yamato-info-page__sections-lead::after {
	content: "";
	display: block;
	width: 3rem;
	height: 2px;
	margin-top: 0.875rem;
	background: var(--yamato-info-gold);
}

/* Section cards grid */

.yamato-info-page__sections {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(1.25rem, 2.5vw, 1.75rem);
}

.yamato-info-page__section {
	position: relative;
	min-height: 100%;
	padding: clamp(1.5rem, 2.5vw, 2rem);
	background: #fff;
	border: 1px solid rgba(156, 127, 78, 0.16);
	box-shadow: 0 12px 32px rgba(4, 10, 28, 0.05);
	transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.yamato-info-page__section:hover {
	transform: translateY(-4px);
	border-color: rgba(156, 127, 78, 0.32);
	box-shadow: 0 18px 40px rgba(4, 10, 28, 0.09);
}

.yamato-info-page__section--alt {
	background: linear-gradient(180deg, #fff 0%, rgba(247, 244, 239, 0.65) 100%);
}

.yamato-info-page__section-corner {
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 0;
	border-top: 14px solid var(--yamato-info-accent);
	border-right: 14px solid transparent;
	opacity: 0.85;
}

.yamato-info-page__section-number {
	position: absolute;
	top: 0.75rem;
	right: 1rem;
	font-family: var(--yamato-font-nav);
	font-size: clamp(2.5rem, 4vw, 3.25rem);
	font-weight: 500;
	line-height: 1;
	color: rgba(156, 127, 78, 0.14);
	user-select: none;
}

.yamato-info-page__section-inner {
	position: relative;
	z-index: 1;
	padding-right: 2.5rem;
}

.yamato-info-page__section-title {
	margin: 0 0 1rem;
	padding-right: 1rem;
	font-family: var(--yamato-font-nav);
	font-size: clamp(1.25rem, 2vw, 1.5rem);
	font-weight: 500;
	line-height: 1.35;
	color: var(--yamato-info-dark);
}

.yamato-info-page__section-title::after {
	content: "";
	display: block;
	width: 2rem;
	height: 2px;
	margin-top: 0.75rem;
	background: var(--yamato-info-gold);
}

.yamato-info-page__section-content {
	font-size: 0.9375rem;
	line-height: 1.72;
}

.yamato-info-page__section-content > :first-child {
	margin-top: 0;
}

.yamato-info-page__section-content > :last-child {
	margin-bottom: 0;
}

.yamato-info-page__section-content p {
	margin: 0 0 0.875rem;
}

.yamato-info-page__section-content ul,
.yamato-info-page__section-content ol {
	margin: 0 0 1rem;
	padding: 0;
	list-style: none;
}

.yamato-info-page__section-content ul li,
.yamato-info-page__section-content ol li {
	position: relative;
	margin-bottom: 0.625rem;
	padding-left: 1.375rem;
}

.yamato-info-page__section-content ul li:last-child,
.yamato-info-page__section-content ol li:last-child {
	margin-bottom: 0;
}

.yamato-info-page__section-content ul li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.55rem;
	width: 0.5rem;
	height: 0.5rem;
	background: var(--yamato-info-accent);
	transform: rotate(45deg);
}

.yamato-info-page__section-content ol {
	counter-reset: yamato-info-counter;
}

.yamato-info-page__section-content ol li {
	counter-increment: yamato-info-counter;
	padding-left: 1.75rem;
}

.yamato-info-page__section-content ol li::before {
	content: counter(yamato-info-counter, decimal-leading-zero);
	position: absolute;
	left: 0;
	top: 0;
	font-family: var(--yamato-font-nav);
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--yamato-info-gold);
	background: none;
	transform: none;
	width: auto;
	height: auto;
}

.yamato-info-page__section-content strong {
	color: var(--yamato-info-dark);
	font-weight: 600;
}

.yamato-info-page__section-content a {
	color: var(--yamato-info-accent);
	text-decoration: none;
	border-bottom: 1px solid rgba(202, 60, 63, 0.35);
	transition: color 0.3s ease, border-color 0.3s ease;
}

.yamato-info-page__section-content a:hover {
	color: var(--yamato-info-dark);
	border-bottom-color: var(--yamato-info-dark);
}

/* Footer / updated */

.yamato-info-page__footer {
	position: relative;
	z-index: 2;
	display: flex;
	justify-content: center;
	margin-top: clamp(2.5rem, 4vw, 3.5rem);
}

.yamato-info-page__updated {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin: 0;
	padding: 0.75rem 1.25rem;
	font-family: var(--yamato-font-nav);
	font-size: 0.8125rem;
	line-height: 1.4;
	color: var(--yamato-info-muted);
	background: var(--yamato-info-soft);
	border: 1px solid rgba(156, 127, 78, 0.2);
}

.yamato-info-page__updated .material-icons {
	font-size: 1.125rem;
	color: var(--yamato-info-gold);
}

/* Full-width last section when odd count */

.yamato-info-page__section:last-child:nth-child(odd) {
	grid-column: 1 / -1;
	max-width: calc(50% - 0.875rem);
	justify-self: center;
}

@media (max-width: 991px) {
	.yamato-info-page__sections {
		grid-template-columns: minmax(0, 1fr);
	}

	.yamato-info-page__section:last-child:nth-child(odd) {
		max-width: none;
		justify-self: stretch;
	}

	.yamato-info-page__sections-head {
		padding-left: clamp(2.5rem, 6vw, 3.5rem);
	}
}

@media (max-width: 767px) {
	.yamato-info-page {
		padding-bottom: 3.5rem;
	}

	.yamato-info-page__sections-head {
		grid-template-columns: minmax(0, 1fr);
		padding-left: 0;
	}

	.yamato-info-page__sections-label {
		display: none;
	}

	.yamato-info-page__section-inner {
		padding-right: 1.5rem;
	}

	.yamato-info-page__decor-icon--shrimp,
	.yamato-info-page__decor-icon--bamboo {
		display: none;
	}
}
