@charset "utf-8";

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

html {
	font-size: 16px;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", sans-serif;
	line-height: 1.8;
	color: #27242d;
	background-color: #f7f7f7;
	overflow-x: hidden;
}

html {
	scroll-behavior: auto;
}

body {
	overflow-x: hidden;
}

section {
	scroll-margin-top: 100px;
}


@supports (overflow: clip) {
	html, body { overflow-x: clip; }
}

a {
	color: inherit;
	text-decoration: none;
	transition: color .25s ease, opacity .25s ease, transform .25s ease;
}

a:focus-visible,
.btn:focus-visible {
	outline: 3px solid rgba(17,17,17,.25);
	outline-offset: 2px;
	border-radius: 6px;
}

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

.section {
	width: 100%;
	margin: 0;
	padding: 0;
}

.section_kicker {
	margin: 60px 0 0;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #888;
	text-align: center;
}

.section_title {
	margin: 0 0 100px;
	font-size: 60px;
	text-align: center;
}

.inner {
	max-width: 1500px;
	margin: 60px auto;
	padding: 0 50px;
}

.btn,
.btn_blank:not(footer .btn_blank) {
	display: inline-block;
	position: relative;
	overflow: hidden;
	font-size: 16px;
	color: #f7f7f7;
	border-radius: 999px;
	background: linear-gradient(135deg, #111, #555);
	background-size: 200% 200%;
	background-position: 0% 50%;
	transition: transform .25s ease, box-shadow .25s ease, opacity .25s ease, background-position .25s ease;
}

.btn { padding: 0.5em 1em; }

.btn_blank:not(footer .btn_blank) { padding: 0.5em 2.5em 0.5em 1em; }

.btn:hover,
.btn:focus,
.btn_blank:not(footer .btn_blank):hover,
.btn_blank:not(footer .btn_blank):focus {
	transform: translateY(-2px);
	box-shadow: 0 10px 24px rgba(0,0,0,.18);
	opacity: 0.98;
	background-position: 100% 50%;
}

.btn_blank:not(footer .btn_blank)::after {
	content: "";
	position: absolute;
	right: 1rem;
	top: 50%;
	transform: translateY(-50%);
	width: 16px;
	height: 16px;
	background: url("/imgs/arrow_blank.svg") no-repeat center / contain;
}

.logo { filter: brightness(0) invert(1); }

.coming { color: #aaa; }

.site_header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: #ece2d6;
	border-bottom: 1px solid #f7f7f7;
}

.header_inner {
	max-width: 1400px;
	margin: 0 auto;
	padding: 8px 16px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.site_logo { margin: 0; }
.site_logo a { display: inline-block; }
.site_logo img {
	display: block;
	margin-top: 5px;
}

.nav_toggle {
	position: relative;
	width: 32px;
	height: 24px;
	padding: 0;
	border: none;
	background: none;
	cursor: pointer;
	display: none;
}

.nav_toggle span {
	position: absolute;
	left: 0;
	right: 0;
	height: 2px;
	background: #333;
	border-radius: 2px;
	transition: 0.3s;
}

.nav_toggle span:nth-child(1) { top: 0; }
.nav_toggle span:nth-child(2) { top: 11px; }
.nav_toggle span:nth-child(3) { bottom: 0; }

.nav_toggle.is_open span:nth-child(1) { transform: translateY(11px) rotate(45deg); }
.nav_toggle.is_open span:nth-child(2) { opacity: 0; }
.nav_toggle.is_open span:nth-child(3) { transform: translateY(-11px) rotate(-45deg); }

.global_nav > ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 32px;
}

.global_nav > ul > li { position: relative; }

.global_nav a {
	text-decoration: none;
	font-weight: bold;
	display: block;
	line-height: 1em;
}

.global_nav > ul > li > a {
	padding: 8px 0;
	display: inline-block;
	font-size: 20px;
	font-weight: 600;
}

.site_header a span {
	color: #888;
	font-size: 12px;
	display: block;
}

.global_nav > ul > li > ul {
	position: absolute;
	left: auto;
	right: 0;
	top: 100%;
	max-width: calc(100vw - 16px);
	min-width: 300px;
	margin: 0;
	padding: 12px 16px;
	list-style: none;
	background: #27242d;
	color: #f7f7f7;
	border-radius: 4px;
	box-shadow: 0 8px 20px rgba(0,0,0,0.08);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
	z-index: 900;
}

.global_nav > ul > li > ul > li { margin-bottom: 4px; }
.global_nav > ul > li > ul > li:last-child { margin-bottom: 0; }

.global_nav > ul > li > ul a {
	display: block;
	padding: 4px 0;
	font-size: 16px;
	font-weight: bold;
	line-height: 2em;
}

.global_nav ul a.btn_blank {
	display: block;
	padding: 4px 0;
	font-size: 16px;
	background: none;
	border-radius: 0;
}

.global_nav ul a.btn_blank:hover,
.global_nav ul a.btn_self:hover {
	background: #f7f7f7;
	color: #27242d;
}

.category_heading {
	color: #ece2d6;
	cursor: default;
	list-style: none;
	pointer-events: none;
	font-size: 12px;
	padding: 1em 0 0;
	display: flex;
	align-items: center;
}

.category_heading::before {
	content: "─";
	font-size: 1em;
	margin-right: 5px;
	color: #ece2d6;
}

.category_heading::after {
	content: "─";
	font-size: 1em;
	margin-left: 5px;
	color: #ece2d6;
}

@media (hover: hover) {
	.global_nav > ul > li:hover > ul {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}
	.global_nav > ul > li:hover > a { color: #e5b076; }
}

.hero { background: #ece2d6; }

.hero .inner {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
	align-items: center;
	gap: 3rem;
	margin: 0 auto;
	padding: 0;
	max-width: 1400px;
}

.hero_media img {
	width: 100%;
	height: auto;
	border-radius: 16px;
	object-fit: cover;
}

.hero_content h2 {
	margin: 1rem 0 2rem;
	font-size: 3rem;
	line-height: 1.4;
}

.hero_kicker {
	font-size: 1.2rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #888;
}

#hero_heading { font-size: 50px; }

.marquee {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	max-height: 700px;
	overflow: hidden;
}

.col { position: relative; overflow: hidden; }

.track {
	display: flex;
	flex-direction: column;
	will-change: transform;
	transform: translate3d(0,0,0);
	backface-visibility: hidden;
}

.track img {
	transform: translateZ(0);
	backface-visibility: hidden;
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
	margin: 8px 0;
	border-radius: 8px;
}

@keyframes scroll-up {
	0% { transform: translateY(0); }
	100% { transform: translateY(-50%); }
}

@keyframes scroll-down {
	0% { transform: translateY(-50%); }
	100% { transform: translateY(0); }
}

.col_up .track { animation: scroll-up 30s linear infinite 1s; }
.col_down .track { animation: scroll-down 30s linear infinite 1s; }

.section.about {
	padding: 60px 0;
	margin: 0 auto;
}

.section.about h3 {
	font-size: 40px;
	margin: 0;
	padding: 0;
}

.section.about .btn {
	display: block;
	margin: auto;
	max-width: 7em;
	text-align: center;
}

.about_body {
	background: #ece2d6;
	display: flex;
	align-items: center;
	gap: 0;
	margin: 0;
	padding: 0;
}

.about_text {
	width: 50%;
	margin: 0;
	padding: 9em;
	font-size: 14px;
}

.about_image {
	width: 50%;
	margin: 0;
	padding: 0;
	max-width: 700px;
}

.about_image img {
	margin: 0;
	padding: 0;
	width: 100%;
	height: auto;
	display: block;
}

.section.features {
	padding: 60px 0;
	margin: 0 auto;
}

.feature_list {
	display: flex;
	justify-content: center;
	gap: 40px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.feature_item {
	width: calc(100% / 3);
	text-align: center;
}

.feature_item img {
	display: block;
	margin: 0 auto 16px;
	width: 64px;
	height: 64px;
	object-fit: contain;
}

.feature_item h3 { font-size: 24px; margin-bottom: 8px; }
.feature_item p { font-size: 14px; }

.section.brands {
	padding: 0 0 60px;
	margin: 60px auto;
	background: #ece2d6;
}

.section.brands .section_header {
	text-align: center;
	margin: 0;
	padding: 60px 0 0;
}

.section.brands .inner {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0;
}

.brand_grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 50px;
}

.brand_grid figure { margin: 0; padding: 0; }

.brand_card {
	background-color: #f7f7f7;
	border-radius: 20px;
	text-align: center;
	padding: 0;
}

.brand_card:hover { opacity: 0.6; }

.brand_name {
	margin: 1em 0;
	font-weight: normal;
	font-size: 12px;
}

.brand_logo {
	display: block;
	margin: 60px auto 0;
	height: 40px;
	width: auto;
	object-fit: contain;
	overflow: hidden;
}

.brand_image_wrap {
	margin: 3em 0 0;
	padding: 0;
	border-radius: 0 0 20px 20px;
	overflow: hidden;
}

.brand_image {
	width: 100%;
	height: 100%;
	display: block;
	margin: 3em 0 0;
	padding: 0;
	border-radius: 0 0 20px 20px;
	transform-origin: center center;
	transition: transform 0.4s ease-out;
}

.brand_card:hover .brand_image { transform: scale(1.08); }

.section.products {
	padding: 50px 0 60px;
	margin: 60px auto;
}

.section.products h3 {
	font-size: 40px;
	text-align: center;
	margin: 0 auto;
	padding: 0;
}

.section.products .brand_grid {
	grid-template-columns: repeat(3, 1fr);
	max-width: 1200px;
	margin: 40px auto;
	padding: 60px;
}

.section.products .brand_card {
	padding: 40px 40px 20px;
	font-size: 14px;
		background: #fff;
}

.section.products .brand_grid .product_image {
	max-width: 100%;
	height: auto;
}

.section.products .brand_card .product_logo {
	max-height: 30px;
	height: auto;
}

img.product_image {
	width: 60%;
	height: auto;
}

img.product_logo {
	width: auto;
	height: 25px;
}

.error_section {
	padding: 50px 0 60px;
	margin: 60px auto;
}

.breadcrumb {
	font-size: 14px;
	margin: 20px;
}

.breadcrumb_list {
	list-style: none;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
}

.breadcrumb_item {
	margin: 0;
	position: relative;
}

.breadcrumb_item + .breadcrumb_item::before {
	content: "\003E";
	color: #999;
	margin: 0 10px;
}

.breadcrumb_item a { text-decoration: none; }

.breadcrumb_item a:hover { text-decoration: underline; }

.breadcrumb_item:last-child {
	color: #555;
	pointer-events: none;
}

.site_footer {
	background: #27242d;
	color: #f7f7f7;
}

.footer_inner {
	max-width: 1500px;
	margin: 0 auto;
	padding: 60px 50px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: 3rem;
	row-gap: 2.4rem;
	align-items: start;
}

.footer_col_about { max-width: 500px; }

.footer_col_about p {
	margin: 0;
	padding: 0;
	font-size: 20px;
	font-weight: bold;
}

.footer_col_nav {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 2.4rem;
}

.footer_group_title {
	margin: 0 0 20px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #888;
	font-weight: normal;
	font-size: 12px;
}

.footer_list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer_list li + li { margin-top: .4rem; }
.footer_list a { color: #f7f7f7; }

.footer_bottom {
	max-width: 1500px;
	margin: 0 auto;
	padding: 20px 50px;
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 2rem;
	align-items: center;
}

.footer_brand {
	display: flex;
	align-items: center;
}

.footer_brand img { width: 200px; height: auto; }

.footer_copy { margin: 0; font-size: 12px; }

.legal_nav ul {
	display: flex;
	flex-wrap: wrap;
	gap: 2em;
	margin: 0;
	padding: 0;
	list-style: none;
	justify-content: flex-end;
}

.legal_nav a { font-size: 12px; opacity: .9; }

.site_footer a {
	position: relative;
	color: #f7f7f7;
	transition: color .25s ease, opacity .25s ease;
}

.site_footer a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -4px;
	width: 0;
	height: 2px;
	background: linear-gradient(135deg, #f7f7f7, #cfcfcf);
	border-radius: 2px;
	transition: width .2s ease;
}

.site_footer a:hover,
.site_footer a:focus {
	color: #f7f7f7;
	opacity: 0.92;
}

.site_footer a:hover::after,
.site_footer a:focus::after { width: 100%; }

.site_footer .logo {
	width: 150px;
	height: 30px;
	margin: 40px 0 0;
	padding: 0;
}

.footer_col_about a::after { content: none !important; }

@media (min-width: 768px) and (max-width: 1024px) {
	.header_inner,
	.inner,
	.hero .inner,
	.footer_inner,
	.footer_bottom {
		max-width: none;
		width: 100%;
		margin: 0;
		padding-left: 40px;
		padding-right: 40px;
		box-sizing: border-box;
	}

	.header_inner {
		padding-top: 8px;
		padding-bottom: 8px;
	}

	.footer_bottom { padding-top: 15px; padding-bottom: 15px; }

	.global_nav > ul { gap: 20px; }

	.hero .inner {
		padding-top: 0;
		padding-bottom: 0;
		grid-template-columns: 1fr 1fr;
		gap: 1.5rem;
	}

	.hero_content h2 { font-size: 2.2rem; }
	#hero_heading { font-size: 40px; }

	.about_body {
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
	}

	.about_text {
		width: 50%;
		padding: 3em 1em;
		font-size: 14px;
		box-sizing: border-box;
	}

	.about_image {
		width: 50%;
		padding: 0;
		box-sizing: border-box;
	}

	.feature_list {
		flex-wrap: wrap;
		justify-content: center;
		gap: 30px;
	}

	.feature_item { flex: 1 1 220px; }

	.brand_grid {
		grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
		justify-content: center;
		gap: 25px;
	}

	.brand_card { margin: 0 auto; }

	.footer_inner {
		padding-top: 40px;
		padding-bottom: 40px;
		grid-template-columns: 1fr;
		row-gap: 40px;
	}

	.footer_col_nav {
		grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
		gap: 20px;
		justify-items: center;
	}

	.footer_bottom {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 1.5rem;
	}

	.footer_brand img { margin: 0 auto; }
	.legal_nav ul { justify-content: center; }

	.btn_blank:not(footer .btn_blank) { padding-right: 2.5em; }
	.btn_blank:not(footer .btn_blank)::after { right: 0.8em; }
}

@media (max-width: 767px) {
	.inner{
		padding: 0 40px;
	}
	.header_inner { padding: 8px 12px; }
	.nav_toggle { display: block; }

	.global_nav {
		position: fixed;
		inset: 40px 0 0 0;
		background: #27242d;
		color: #f7f7f7;
		transform: translateX(100%);
		transition: transform 0.3s ease;
		padding: 16px;
		overflow-y: auto;
	}

	.global_nav.is_open { transform: translateX(0); }

	.global_nav > ul { display: block; gap: 0; }

	.global_nav > ul > li { padding: 8px 0; }
	.global_nav > ul > li:last-child { border-bottom: none; }

	.global_nav > ul > li > a {
		display: block;
		padding: 8px 4px;
		font-size: 30px;
	}

	.global_nav > ul > li > a > span { font-size: 12px; }

	.global_nav > ul > li > ul {
		position: static;
		box-shadow: none;
		border-radius: 0;
		padding: 4px 4px 8px;
		margin-top: 4px;
		transform: none;
		opacity: 1;
		visibility: visible;
		border-bottom: 1px solid #f7f7f7;
	}

	.global_nav > ul > li > ul > li {
		padding: 0.5em;
		font-size: 14px;
	}

	.global_nav ul a.btn_self { padding: 0 1.5em; }

	.global_nav > ul > li > ul.is_open { display: block; }

	.section_title { font-size: 30px; }

	.hero .inner {
		grid-template-columns: 1fr;
		gap: 2rem;
		padding-top: 0;
		padding-bottom: 30px;
	}

	.hero_content {
		order: 2;
		margin: auto 20px;
		display: flex;
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.hero_media { order: 1; }

	.hero_content h2 {
		font-size: 16px;
		margin-top: 1rem;
		margin-bottom: 1.5rem;
	}

	.hero_content .btn { margin: auto; }

	#hero_heading { font-size: 20px; }
	.hero_media img { border-radius: 8px; }

	.marquee { grid-template-columns: 1fr 1fr; max-height: 400px; }

	.about_body { flex-direction: column; text-align: center; }

	.about_text { padding: 30px; }

	.about_text,
	.about_image {
		width: 100%;
		font-size: 14px;
		display: block;
		margin: 0;
	}

	.section.about h3 { font-size: 20px; }

	.about_image { padding: 0; }

	.section.features { padding: 30px 20px; }

	.feature_list { flex-direction: column; gap: 30px; }
	.feature_list li { margin: 0 0 20px; }
	.feature_item { width: 100%; }
	.feature_item img { width: 40px; height: auto; margin-bottom: 12px; }
	.feature_item h3 { font-size: 20px; }

	.section.brands {
		padding: 30px 20px 30px;
		margin-top: 30px;
	}

	.section.brands{ padding-top: 30px; }
	.section_header { padding: 30px 40px 0; }

	.brand_grid { grid-template-columns: 1fr; gap: 30px; }

	.brand_card {
		width: 80%;
		margin: 0 10%;
	}

	.brand_logo { margin-top: 30px; width: 150px; }
	.brand_image { margin-top: 20px; }

	.section.products { padding: 30px 0px; text-align: center; }

	.section.products h3 {
		font-size: 28px;
		padding: 40px 0 0;
	}

	.section.products .brand_grid {
		grid-template-columns: 1fr;
		width: 100%;
		margin: 20px auto;
		padding: 10px;
	}

	.section.products .brand_card {
		padding: 40px 40px 10px;
		font-size: 12px;
	}

	.section.products img {
		width: 100px;
		height: auto;
	}

	.error_section { padding: 30px 20px; text-align: center; }

	.footer_inner {
		width: 100%;
		margin: 0 auto;
		padding: 60px 20px;
		display: block;
	}

	.footer_col_about {
		width: 100%;
		display: block;
		text-align: center;
	}

	.footer_col_about p { font-size: 14px; }

	.footer_col_nav { width: 100%; display: block; }

	.footer_group_title {
		margin: 40px 0 10px;
		display: block;
		width: 100%;
	}

	.footer_list { display: block; width: 100%; border-bottom: none; }
	.footer_list li + li { display: block; width: 100%; }
	.footer_list a { display: block; width: 100%; }

	.coming { display: block; width: 100%; }

	.footer_bottom {
		max-width: 1400px;
		margin: 0 auto;
		padding: 20px 0;
		display: block;
		width: 100%;
	}

	.footer_brand { display: block; width: 100%; }

	.footer_brand img {
		display: block;
		margin: 0 20px;
	}

	.footer_copy { margin: 0 20px; }

	.legal_nav ul { padding: 0 20px 0 0; }
	.legal_nav ul li { border: none; }

	.site_footer a::after { content: none; }
}