:root {
	--blue: #006abd;
	--blue-dark: #004e8c;
	--ink: #101010;
	--muted: #6e6e6e;
	--earth: #a59985;
	--paper: #ffffff;
	--soft: #f7f7f7;
	--line: #d8d8d8;
	--content: 1320px;
	--side: clamp(24px, 5vw, 80px);
	--display: "DM Sans", "Zen Kaku Gothic New", sans-serif;
	--body: "Zen Kaku Gothic New", "Yu Gothic", sans-serif;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font-family: var(--body);
	font-size: 16px;
	line-height: 1.9;
	-webkit-font-smoothing: antialiased;
}

body:has(dialog[open]) {
	overflow: hidden;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

a {
	color: inherit;
	text-decoration: none;
}

button,
input,
select,
textarea {
	font: inherit;
}

button,
summary,
a {
	-webkit-tap-highlight-color: transparent;
}

:focus-visible {
	outline: 3px solid var(--paper);
	outline-offset: 2px;
	box-shadow: 0 0 0 5px var(--blue-dark);
}

.skip-link {
	position: fixed;
	top: 8px;
	left: 8px;
	z-index: 1000;
	padding: 10px 16px;
	background: var(--ink);
	color: var(--paper);
	transform: translateY(-160%);
}

.skip-link:focus {
	transform: translateY(0);
}

.site-header {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 20;
	width: 100%;
}

.site-header__inner {
	display: grid;
	grid-template-columns: minmax(240px, 1fr) auto auto;
	align-items: stretch;
	min-height: 88px;
}

.site-brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	width: fit-content;
	padding-inline: var(--side);
	font-family: var(--display);
	font-size: clamp(20px, 2vw, 30px);
	font-weight: 600;
	letter-spacing: -0.04em;
}

.site-brand__mark {
	position: relative;
	display: inline-block;
	width: 29px;
	height: 21px;
	background: var(--blue);
	clip-path: polygon(0 72%, 34% 19%, 49% 45%, 69% 0, 100% 72%, 78% 72%, 69% 42%, 51% 72%, 35% 47%, 20% 72%);
}

.custom-logo-link {
	display: block;
}

.custom-logo {
	max-width: 230px;
	max-height: 58px;
	object-fit: contain;
}

.site-navigation {
	display: flex;
	align-items: center;
	gap: clamp(18px, 2vw, 36px);
	padding-inline: 30px;
	background: rgb(255 255 255 / 88%);
	font-size: 13px;
	font-weight: 500;
}

.site-navigation a {
	position: relative;
	white-space: nowrap;
}

.site-navigation a::after {
	position: absolute;
	right: 0;
	bottom: -8px;
	left: 0;
	height: 1px;
	background: currentcolor;
	content: "";
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 180ms ease;
}

.site-navigation a:hover::after,
.site-navigation a:focus-visible::after {
	transform: scaleX(1);
	transform-origin: left;
}

.header-contact {
	display: grid;
	place-content: center;
	min-width: 220px;
	padding: 15px 28px;
	background: #756a58;
	color: var(--paper);
	font-weight: 500;
	line-height: 1.4;
	text-align: center;
}

.header-contact span {
	font-family: var(--display);
	font-size: 10px;
	font-weight: 400;
	letter-spacing: 0.12em;
}

.menu-toggle {
	display: none;
}

.hero {
	position: relative;
	min-height: min(860px, 100svh);
	overflow: hidden;
	background: var(--soft);
}

.hero__media {
	position: absolute;
	top: 0;
	right: 6%;
	bottom: 5%;
	left: 24%;
	background: #d9dfda;
}

.hero__media--placeholder::before,
.hero__media--placeholder::after {
	position: absolute;
	content: "";
}

.hero__media--placeholder::before {
	right: 13%;
	bottom: 12%;
	width: 44%;
	height: 46%;
	border: 18px solid #303b39;
	background: #b38856;
	transform: skewY(-4deg);
}

.hero__media--placeholder::after {
	right: 20%;
	bottom: 16%;
	width: 12%;
	height: 34%;
	background: #1d2322;
	box-shadow: -210px 5px 0 #1d2322;
}

.hero__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero__panel {
	position: absolute;
	top: 24%;
	left: 0;
	z-index: 2;
	width: min(580px, 42vw);
	padding: clamp(46px, 6vw, 88px) clamp(36px, 5vw, 88px);
	background: var(--paper);
}

.hero__eyebrow {
	margin: 0 0 28px;
	font-size: 15px;
	letter-spacing: 0.05em;
}

.hero h1 {
	margin: 0;
	font-size: clamp(48px, 5vw, 82px);
	font-weight: 400;
	letter-spacing: -0.08em;
	line-height: 1.25;
}

.hero h1 span {
	display: block;
	width: fit-content;
	padding-right: 0.12em;
}

.hero h1 span:first-child::first-letter,
.hero h1 span:last-child::first-letter {
	color: var(--earth);
}

.hero__lead {
	max-width: 390px;
	margin: 34px 0 0;
	font-size: 15px;
}

.hero__vertical {
	position: absolute;
	right: 2.2%;
	bottom: 12%;
	z-index: 2;
	margin: 0;
	font-family: var(--display);
	font-size: 12px;
	letter-spacing: 0.1em;
	writing-mode: vertical-rl;
}

.section {
	padding-block: clamp(96px, 10vw, 170px);
}

.section__inner {
	width: min(calc(100% - (var(--side) * 2)), var(--content));
	margin-inline: auto;
}

.section-heading p,
.section-kicker {
	margin: 0 0 8px;
	color: var(--blue);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
}

.section-heading h2 {
	margin: 0;
	font-family: var(--display);
	font-size: clamp(36px, 4vw, 58px);
	font-weight: 400;
	letter-spacing: -0.045em;
	line-height: 1.05;
}

.section-heading > span,
.section-heading > div + span {
	display: block;
	margin-top: 18px;
	color: var(--muted);
	font-size: 14px;
}

.section-heading--row {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 40px;
	margin-bottom: 64px;
}

.section-heading--row > span {
	max-width: 360px;
	padding-bottom: 8px;
	text-align: right;
}

.information__layout {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: clamp(60px, 8vw, 140px);
}

.news-list {
	border-top: 1px solid var(--ink);
}

.news-item {
	display: grid;
	grid-template-columns: 120px 1fr;
	gap: 24px;
	padding-block: 22px;
	border-bottom: 1px solid var(--line);
	transition: color 160ms ease, padding-left 160ms ease;
}

.news-item:hover,
.news-item:focus-visible {
	padding-left: 8px;
	color: var(--blue);
}

.news-item time {
	font-family: var(--display);
	font-size: 13px;
}

.story {
	background: var(--soft);
}

.story__layout {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	align-items: center;
	gap: clamp(60px, 9vw, 150px);
}

.story__copy h3 {
	margin: 52px 0 34px;
	font-size: clamp(28px, 3vw, 46px);
	font-weight: 500;
	letter-spacing: 0.02em;
	line-height: 1.65;
}

.story__copy > p {
	max-width: 680px;
}

.story__visual {
	position: relative;
	display: grid;
	place-content: center;
	aspect-ratio: 4 / 5;
	background: var(--blue);
	color: var(--paper);
	overflow: hidden;
}

.story__visual::before {
	position: absolute;
	top: 10%;
	right: 12%;
	width: 46%;
	height: 60%;
	border: 1px solid rgb(255 255 255 / 55%);
	content: "";
}

.story__visual span {
	font-family: var(--display);
	font-size: clamp(90px, 11vw, 170px);
	font-weight: 400;
	line-height: 1;
}

.story__visual b {
	font-family: var(--display);
	font-size: 15px;
	font-weight: 400;
	letter-spacing: 0.4em;
	text-align: right;
}

.card-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(22px, 3vw, 44px);
}

.content-card {
	position: relative;
	background: var(--paper);
}

.content-card__image {
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: #dde3e0;
}

.content-card__image--placeholder {
	position: relative;
}

.content-card__image--placeholder::before {
	position: absolute;
	right: 18%;
	bottom: 13%;
	width: 56%;
	height: 54%;
	border: 8px solid #353d3b;
	background: var(--earth);
	content: "";
}

.content-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 350ms ease;
}

.content-card:hover .content-card__image img {
	transform: scale(1.025);
}

.content-card__body {
	padding: 26px 2px 12px;
}

.content-card__body > p:first-child {
	margin: 0;
	color: var(--blue);
	font-family: var(--display);
	font-size: 11px;
	letter-spacing: 0.12em;
}

.content-card h3 {
	margin: 10px 0 14px;
	font-size: clamp(20px, 2vw, 28px);
	font-weight: 500;
	line-height: 1.55;
}

.content-card__body > p:not(:first-child) {
	min-height: 5.7em;
	margin-bottom: 20px;
	color: var(--muted);
	font-size: 14px;
}

.text-button {
	display: inline-flex;
	align-items: center;
	gap: 18px;
	padding: 0 0 8px;
	border: 0;
	border-bottom: 1px solid currentcolor;
	background: transparent;
	color: var(--ink);
	cursor: pointer;
	font-size: 13px;
}

.text-button::after {
	content: "→";
	transition: transform 160ms ease;
}

.text-button:hover::after,
.text-button:focus-visible::after {
	transform: translateX(5px);
}

.empty-state {
	margin: 0;
	padding: 26px;
	border: 1px solid var(--line);
	color: var(--muted);
}

.statement {
	padding: clamp(110px, 14vw, 220px) var(--side);
	background: var(--ink);
	color: var(--paper);
	text-align: center;
}

.statement > p {
	margin: 0 0 12px;
	color: var(--earth);
	font-size: 15px;
	letter-spacing: 0.1em;
}

.statement h2 {
	margin: 0;
	font-size: clamp(52px, 8vw, 124px);
	font-weight: 400;
	letter-spacing: 0.04em;
}

.statement div {
	display: flex;
	justify-content: center;
	gap: clamp(30px, 8vw, 120px);
	margin-top: 60px;
	font-size: clamp(24px, 3vw, 42px);
}

.product {
	background: var(--paper);
}

.product__layout {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	align-items: center;
	gap: clamp(60px, 9vw, 140px);
}

.product__visual {
	position: relative;
	display: grid;
	place-content: center;
	aspect-ratio: 4 / 3;
	background: var(--blue);
	color: var(--paper);
}

.product__visual::before,
.product__visual::after {
	position: absolute;
	content: "";
}

.product__visual::before {
	top: 20%;
	right: 17%;
	bottom: 20%;
	left: 17%;
	border: 1px solid rgb(255 255 255 / 60%);
}

.product__visual::after {
	right: -28px;
	bottom: -28px;
	width: 42%;
	height: 38%;
	background: var(--earth);
}

.product__visual span {
	font-family: var(--display);
	font-size: clamp(56px, 8vw, 116px);
	letter-spacing: 0.05em;
}

.product__copy h2 {
	margin: 12px 0 36px;
	font-size: clamp(36px, 4vw, 62px);
	font-weight: 500;
	line-height: 1.45;
}

.product__copy p:not(.section-kicker) {
	color: #3f3f3f;
}

.features {
	background: var(--soft);
}

.feature-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1px;
	background: var(--line);
	border: 1px solid var(--line);
}

.feature-grid article {
	position: relative;
	padding: clamp(46px, 6vw, 86px);
	background: var(--paper);
}

.feature-grid article > span {
	position: absolute;
	top: 28px;
	right: 32px;
	color: var(--blue);
	font-family: var(--display);
	font-size: 13px;
}

.feature-grid h3 {
	margin: 0 0 30px;
	font-size: clamp(26px, 3vw, 42px);
	font-weight: 500;
	line-height: 1.5;
}

.feature-grid p {
	margin: 0;
	color: var(--muted);
}

.collection--solutions {
	background: var(--blue);
	color: var(--paper);
}

.collection--solutions .section-heading p,
.collection--solutions .content-card__body > p:first-child {
	color: var(--paper);
}

.collection--solutions .section-heading > div + span {
	color: rgb(255 255 255 / 75%);
}

.collection--solutions .content-card {
	background: transparent;
}

.collection--solutions .content-card__image--placeholder {
	background: #e3ded4;
}

.collection--solutions .content-card__body > p:not(:first-child) {
	color: rgb(255 255 255 / 78%);
}

.collection--solutions .text-button {
	color: var(--paper);
}

.faq__layout {
	display: grid;
	grid-template-columns: 0.8fr 2fr;
	gap: clamp(60px, 10vw, 160px);
}

.faq-list {
	border-top: 1px solid var(--ink);
}

.faq-list details {
	border-bottom: 1px solid var(--line);
}

.faq-list summary {
	position: relative;
	padding: 28px 62px 28px 52px;
	cursor: pointer;
	font-size: 18px;
	font-weight: 500;
	list-style: none;
}

.faq-list summary::-webkit-details-marker {
	display: none;
}

.faq-list summary::before {
	position: absolute;
	left: 0;
	color: var(--blue);
	font-family: var(--display);
	content: "Q";
}

.faq-list summary::after {
	position: absolute;
	top: 50%;
	right: 14px;
	content: "+";
	font-family: var(--display);
	font-size: 28px;
	font-weight: 300;
	transform: translateY(-50%);
}

.faq-list details[open] summary::after {
	content: "−";
}

.faq-list details > div {
	padding: 0 58px 30px 52px;
	color: var(--muted);
}

.contact {
	background: #756a58;
	color: var(--paper);
}

.contact__layout {
	display: grid;
	grid-template-columns: 0.8fr 1.6fr;
	gap: clamp(60px, 10vw, 150px);
}

.contact header > p {
	margin: 0;
	font-family: var(--display);
	font-size: 13px;
	letter-spacing: 0.14em;
}

.contact header h2 {
	margin: 20px 0 30px;
	font-size: clamp(36px, 4vw, 58px);
	font-weight: 500;
	line-height: 1.45;
}

.contact header span {
	display: block;
	max-width: 380px;
}

.contact-form {
	display: grid;
	gap: 28px;
}

.contact-form label {
	display: grid;
	gap: 8px;
	font-size: 14px;
	font-weight: 500;
}

.contact-form label:not(.privacy-consent) > span:first-of-type {
	margin-left: 8px;
}

.contact-form label > span,
.contact-form label > small {
	display: inline;
	font-size: 11px;
	font-weight: 400;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
	width: 100%;
	border: 0;
	border-bottom: 1px solid rgb(255 255 255 / 75%);
	border-radius: 0;
	background: transparent;
	color: var(--paper);
}

.contact-form input,
.contact-form select {
	height: 52px;
}

.contact-form textarea {
	padding-block: 12px;
	resize: vertical;
}

.contact-form select option {
	color: var(--ink);
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
}

.contact-form .privacy-consent {
	display: flex;
	align-items: center;
	gap: 12px;
}

.privacy-consent input {
	width: 20px;
	height: 20px;
	accent-color: var(--blue);
}

.privacy-consent a {
	border-bottom: 1px solid currentcolor;
}

.submit-button {
	width: min(100%, 360px);
	min-height: 64px;
	border: 1px solid var(--paper);
	background: var(--paper);
	color: var(--ink);
	cursor: pointer;
	font-weight: 600;
	transition: background 160ms ease, color 160ms ease;
}

.submit-button:hover,
.submit-button:focus-visible {
	background: transparent;
	color: var(--paper);
}

.honeypot {
	position: absolute;
	left: -10000px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.form-notice {
	margin: 0 0 28px;
	padding: 16px 20px;
	border: 1px solid currentcolor;
}

.content-dialog {
	width: min(920px, calc(100% - 40px));
	max-height: calc(100svh - 40px);
	padding: clamp(32px, 5vw, 72px);
	border: 0;
	background: var(--paper);
	color: var(--ink);
}

.content-dialog::backdrop {
	background: rgb(0 0 0 / 72%);
}

.content-dialog > img {
	width: 100%;
	max-height: 460px;
	margin-bottom: 32px;
	object-fit: cover;
}

.content-dialog > p {
	margin: 0;
	color: var(--blue);
	font-family: var(--display);
	font-size: 12px;
	letter-spacing: 0.12em;
}

.content-dialog h2 {
	margin: 10px 0 28px;
	font-size: clamp(28px, 4vw, 50px);
	font-weight: 500;
	line-height: 1.4;
}

.dialog-close {
	position: absolute;
	top: 16px;
	right: 20px;
	width: 44px;
	height: 44px;
	border: 0;
	background: transparent;
	cursor: pointer;
	font-size: 32px;
	font-weight: 300;
}

.site-footer {
	padding: 70px var(--side) 32px;
	background: var(--ink);
	color: var(--paper);
}

.site-footer__inner {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: end;
	gap: 40px;
	width: min(100%, var(--content));
	margin-inline: auto;
}

.site-brand--footer {
	grid-row: span 2;
	padding: 0;
}

.site-footer p {
	margin: 0;
	text-align: right;
}

.site-footer__copy {
	color: #999;
	font-family: var(--display);
	font-size: 11px;
	letter-spacing: 0.08em;
}

.article-page {
	min-height: 70svh;
	padding: 160px var(--side) 120px;
}

.article {
	width: min(100%, 900px);
	margin-inline: auto;
}

.article__label {
	color: var(--blue);
	font-family: var(--display);
	letter-spacing: 0.12em;
}

.article h1 {
	margin: 18px 0 54px;
	font-size: clamp(34px, 5vw, 62px);
	line-height: 1.45;
}

.article figure {
	margin: 0 0 50px;
}

.article__content {
	margin-bottom: 60px;
}

@media (max-width: 1180px) {
	.site-header__inner {
		grid-template-columns: 1fr auto;
	}

	.menu-toggle {
		display: grid;
		place-content: center;
		width: 76px;
		border: 0;
		border-left: 1px solid var(--line);
		background: var(--paper);
		font-family: var(--display);
		font-size: 11px;
		letter-spacing: 0.1em;
	}

	.site-navigation {
		position: absolute;
		top: 88px;
		right: 0;
		left: 0;
		display: none;
		align-items: stretch;
		flex-direction: column;
		gap: 0;
		padding: 12px 22px 24px;
		background: var(--paper);
		box-shadow: 0 12px 20px rgb(0 0 0 / 8%);
	}

	.site-navigation.is-open {
		display: flex;
	}

	.site-navigation a {
		padding-block: 13px;
		border-bottom: 1px solid var(--line);
	}

	.header-contact {
		display: none;
	}

	.hero__panel {
		width: min(600px, 52vw);
	}

	.card-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 767px) {
	:root {
		--side: 22px;
	}

	body {
		font-size: 15px;
	}

	.site-header {
		position: fixed;
		background: rgb(255 255 255 / 96%);
		box-shadow: 0 1px 0 rgb(0 0 0 / 8%);
	}

	.site-header__inner {
		grid-template-columns: 1fr auto;
		min-height: 68px;
	}

	.site-brand {
		padding-inline: 20px;
		font-size: 20px;
	}

	.site-brand__mark {
		width: 23px;
		height: 17px;
	}

	.menu-toggle {
		display: grid;
		place-content: center;
		width: 76px;
		border: 0;
		border-left: 1px solid var(--line);
		background: var(--paper);
		font-family: var(--display);
		font-size: 11px;
		letter-spacing: 0.1em;
	}

	.site-navigation {
		position: absolute;
		top: 68px;
		right: 0;
		left: 0;
		display: none;
		align-items: stretch;
		flex-direction: column;
		gap: 0;
		padding: 12px 22px 24px;
		background: var(--paper);
		box-shadow: 0 12px 20px rgb(0 0 0 / 8%);
	}

	.site-navigation.is-open {
		display: flex;
	}

	.site-navigation a {
		padding-block: 13px;
		border-bottom: 1px solid var(--line);
	}

	.header-contact {
		display: none;
	}

	.hero {
		min-height: 760px;
		padding-top: 68px;
	}

	.hero__media {
		top: 68px;
		right: 0;
		bottom: auto;
		left: 18%;
		height: 56%;
	}

	.hero__media--placeholder::after {
		box-shadow: -110px 5px 0 #1d2322;
	}

	.hero__panel {
		top: auto;
		bottom: 0;
		width: calc(100% - 36px);
		padding: 40px 24px 48px;
	}

	.hero h1 {
		font-size: clamp(44px, 14vw, 64px);
	}

	.hero__lead {
		margin-top: 24px;
	}

	.hero__vertical {
		display: none;
	}

	.section {
		padding-block: 90px;
	}

	.section-heading--row {
		align-items: start;
		flex-direction: column;
		gap: 18px;
		margin-bottom: 42px;
	}

	.section-heading--row > span {
		margin-top: 0;
		padding: 0;
		text-align: left;
	}

	.information__layout,
	.story__layout,
	.product__layout,
	.faq__layout,
	.contact__layout {
		grid-template-columns: 1fr;
		gap: 56px;
	}

	.news-item {
		grid-template-columns: 90px 1fr;
		gap: 16px;
	}

	.story__copy h3 {
		margin-top: 38px;
	}

	.story__visual {
		width: 86%;
		margin-left: auto;
	}

	.card-grid {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	.content-card__body > p:not(:first-child) {
		min-height: 0;
	}

	.statement h2 {
		font-size: 13vw;
	}

	.statement div {
		align-items: center;
		flex-direction: column;
		gap: 14px;
		margin-top: 38px;
	}

	.product__visual {
		width: calc(100% - 28px);
	}

	.product__copy {
		padding-top: 20px;
	}

	.feature-grid {
		grid-template-columns: 1fr;
	}

	.feature-grid article {
		padding: 54px 28px;
	}

	.faq-list summary {
		padding: 24px 50px 24px 36px;
		font-size: 16px;
	}

	.faq-list details > div {
		padding: 0 18px 26px 36px;
	}

	.form-row {
		grid-template-columns: 1fr;
	}

	.content-dialog {
		width: calc(100% - 24px);
		max-height: calc(100svh - 24px);
		padding: 54px 24px 34px;
	}

	.site-footer__inner {
		grid-template-columns: 1fr;
		align-items: start;
	}

	.site-brand--footer {
		grid-row: auto;
	}

	.site-footer p {
		text-align: left;
	}

	.article-page {
		padding-top: 130px;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}
}
