.adv img {
	width: 48px;
	height: 48px;
	object-fit: contain;
	margin: 0 auto 14px;
}

.nav a {
	position: relative;
	top: 0
}

.card,
.news-list article {
	transition: transform .35s ease, box-shadow .35s ease
}

.card:hover,
.news-list article:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 28px rgba(30, 32, 30, .12)
}

body.page-products .grid-4 {
	grid-template-columns: repeat(3, 1fr)
}

.video-card {
	cursor: pointer;
	position: relative;
	transition: transform .42s cubic-bezier(.22, .61, .36, 1), box-shadow .42s cubic-bezier(.22, .61, .36, 1);
	will-change: transform
}

.video-card:after {
	content: none;
	position: absolute;
	left: 50%;
	top: 42%;
	transform: translate(-50%, -50%);
	width: 48px;
	height: 48px;
	border: 1px solid #fff;
	border-radius: 50%;
	display: grid;
	place-items: center;
	color: #fff;
	background: rgba(39, 43, 42, .5);
	transition: transform .5s cubic-bezier(.22, .61, .36, 1), background-color .35s ease, box-shadow .35s ease
}

.video-card > img {
	transition: transform .65s cubic-bezier(.22, .61, .36, 1), filter .5s ease
}

.video-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 16px 30px rgba(45, 38, 30, .16)
}

.video-card:hover > img {
	transform: scale(1.045);
	filter: saturate(1.05) contrast(1.02)
}

.video-card:hover:after {
	transform: translate(-50%, -50%) scale(1.08);
	background: rgba(80, 58, 36, .82);
	box-shadow: 0 8px 24px rgba(0, 0, 0, .2)
}

@media (prefers-reduced-motion: reduce) {
	.video-card,
	.video-card > img,
	.video-card:after {
		transition: none
	}
}

.video-modal {
	position: fixed;
	inset: 0;
	z-index: 20;
	display: none;
	place-items: center;
	padding: 24px;
	background: rgba(18, 21, 20, .78)
}

.video-modal.is-open {
	display: grid
}

.video-modal-dialog {
	position: relative;
	width: min(760px, 92vw);
	background: #fff;
	padding: 18px
}

.video-modal-close {
	position: absolute;
	right: 10px;
	top: 6px;
	border: 0;
	background: none;
	font-size: 26px
}

.video-modal img {
	width: 100%;
	max-height: 70vh;
	object-fit: cover
}

.video-modal h3 {
	margin: 12px 0 0
}

.about-extra {
	margin-top: 58px
}

.about-extra h2 {
	font-size: 28px;
	font-weight: 500;
	text-align: center;
	margin: 0 0 26px
}

.about-benefits {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px
}

.about-benefit {
	padding: 22px 16px;
	border-top: 2px solid #a06b3b;
	background: #f7f5f1
}

.about-benefit h3 {
	margin: 0 0 6px;
	font-size: 18px;
	font-weight: 500
}

.about-benefit p {
	margin: 0;
	color: #777;
	font-size: 14px
}

.honors {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px
}

.honor {
	padding: 12px 18px;
	border: 1px solid #ddd5c9;
	color: #6f6559;
	background: #fff
}

@media(max-width:768px) {
	body.page-products .grid-4 {
		grid-template-columns: repeat(2, 1fr)
	}

	.about-benefits {
		grid-template-columns: repeat(2, 1fr)
	}
}

.footer-trust {
	display: flex;
	justify-content: center;
	gap: 34px;
	border-top: 1px solid #555;
	margin-top: 30px;
	padding-top: 22px;
	color: #ccc;
}

.footer-trust span {
	display: flex;
	align-items: center;
	gap: 8px;
}

.footer-trust img {
	width: 22px;
	height: 22px;
	object-fit: contain;
}

.hero.hero-showcase {
	height: calc(100vh - 92px);
	padding: 0;
	overflow: visible;
	background: #f4f2ed;
}

.hero-showcase-frame {
	width: 100%;
	margin: 0;
	height: 100%;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border-radius: 0;
	background: #c9a66b;
}

.hero-visual {
	position: relative;
	height: auto;
	flex: 1 1 auto;
	overflow: hidden;
	background: #c9c8c3;
}

.hero-copy {
	position: absolute;
	left: clamp(24px, 7vw, 96px);
	bottom: clamp(28px, 8vh, 82px);
	z-index: 2;
	max-width: 560px;
	color: rgba(255, 255, 255, 0.82);
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.24);
}

.hero-copy h1 {
	margin: 0;
	font-size: clamp(28px, 4vw, 35px);
	font-weight: 500;
	letter-spacing: 0;
}

.hero-copy h1.is-entering {
	animation: heroTitleIn .7s ease both;
}

@keyframes heroTitleIn {
	from {
		opacity: 0;
		transform: translateY(16px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.hero-slide {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transform: scale(1.025);
	transition: opacity 0.5s ease, transform 0.8s ease;
}

.hero-slide.is-active {
	opacity: 1;
	transform: scale(1);
}

.hero-tabs {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	height: 118px;
	min-height: 0;
	flex: 0 0 118px;
	overflow: hidden;
	background: rgba(197, 158, 96, 0.9);
}

.hero-tab {
	height: 118px;
	min-height: 0;
	padding: 16px 20px 16px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	border: 0;
	border-right: 1px solid rgba(255, 255, 255, 0.42);
	background: rgba(248, 242, 232, 0.94);
	color: #30291f;
	text-align: left;
	cursor: pointer;
	transition: background 0.28s ease, color 0.28s ease;
}

.hero-tab:last-child {
	border-right: 0;
}

.hero-tab span,
.hero-tab b,
.hero-tab small {
	display: block;
}

.hero-tab span {
	width: fit-content;
	text-align: left;
	margin: 0 0 8px;
	padding: 4px 12px;
	border-radius: 14px;
	background: #8d6a47;
	color: #fff;
	font-size: 12px;
	line-height: 1.4;
}

.hero-tab b {
	margin-top: 0;
	font-size: 15px;
	font-weight: 500;
}

.hero-tab small {
	margin-top: 2px;
	font-size: 12px;
	line-height: 1.45;
	color: rgba(48, 41, 31, 0.78);
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.hero-tab.is-active,
.hero-tab:hover,
.hero-tab:focus-visible {
	background: rgba(221, 194, 153, 0.96);
	color: #1d2428;
}

.hero-tab.is-active span,
.hero-tab:hover span,
.hero-tab:focus-visible span {
	background: #765437;
}

.hero-tab:focus-visible {
	position: relative;
	outline: 2px solid #a67c52;
	outline-offset: -2px;
}

.depth-feature {
	display: grid;
	grid-template-columns: 30% 70%;
	gap: 0;
	align-items: center;
	width: 100vw;
	max-width: none;
	margin-left: calc(50% - 50vw);
	padding: 0 4vw;
}

.advantages {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.advantages .adv {
	padding: 12px 10px;
	text-align: center;
}

.advantages .adv img {
	width: 52px;
	height: 52px;
	margin: 0 auto 14px;
	object-fit: contain;
}

.advantages .adv b,
.advantages .adv span {
	display: block;
	white-space: nowrap;
}

.advantages .adv b {
	margin-bottom: 5px;
	font-size: 18px;
	font-weight: 500;
}

.advantages .adv span {
	color: #777;
	font-size: 13px;
}

.depth-copy h2 {
	margin: 0 0 14px;
	font-size: 32px;
	font-weight: 500;
}

.depth-copy p {
	max-width: 460px;
	color: #666;
}

.depth-copy .btn {
	display: inline-block;
	margin-top: 14px;
}

.depth-copy {
	padding-left: 4vw;
	padding-right: 3vw;
}

.depth-carousel {
	padding-left: 1vw;
}

.depth-controls {
	margin-top: 22px;
}

.depth-carousel {
	position: relative;
	min-height: 390px;
	overflow: hidden;
}

.depth-track {
	position: relative;
	height: 340px;
}

.depth-card {
	position: absolute;
	top: 0;
	display: block;
	height: 330px;
	object-fit: cover;
	box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
	translate: var(--card-x, 0px) var(--card-y, 0px);
	transition: left 0.54s ease, right 0.54s ease, width 0.54s ease, transform 0.54s ease, opacity 0.42s ease, translate 0.22s ease;
}

.depth-card[data-depth-position="active"] {
	left: 18%;
	width: 64%;
	z-index: 3;
	opacity: 1;
	transform: scale(1);
}

.depth-card[data-depth-position="previous"] {
	left: -2%;
	width: 17%;
	z-index: 1;
	opacity: 0.72;
	transform: scale(0.96) rotate(-1deg);
}

.depth-card[data-depth-position="next"] {
	right: -2%;
	width: 17%;
	z-index: 1;
	opacity: 0.72;
	transform: scale(0.96) rotate(1deg);
}

.depth-card[data-depth-position="hidden"] {
	left: 50%;
	width: 64%;
	z-index: 0;
	opacity: 0;
	pointer-events: none;
	transform: translateX(-50%) scale(0.9);
}

.depth-controls {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
}

.depth-controls button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border: 1px solid #cfcfcf;
	background: #fff;
	cursor: pointer;
}

.depth-controls button img {
	width: 16px;
	height: 16px;
	object-fit: contain;
}

.depth-controls span {
	font-size: 13px;
	color: #777;
}

.hover-gallery {
	display: flex;
	gap: 6px;
	height: 390px;
	overflow: hidden;
}

.hover-panel {
	position: relative;
	display: block;
	flex: 1 1 0;
	min-width: 0;
	overflow: hidden;
	background: #d7d3cc;
	border-radius: 5px;
	transition: flex 0.58s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.35s ease;
}

.hover-panel img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.02) translate(var(--panel-x, 0px), var(--panel-y, 0px));
	transition: transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1), filter 0.35s ease;
}

.hover-gallery.has-hover .hover-panel:not(.is-active) {
	flex-grow: 0.78;
}

.hover-gallery.has-hover .hover-panel.is-active {
	flex-grow: 1.9;
	box-shadow: 0 14px 26px rgba(38, 34, 28, 0.16);
}

.hover-gallery.has-hover .hover-panel:not(.is-active) img {
	filter: saturate(0.78) brightness(0.82);
}

.hover-panel-caption {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	flex-direction: column;
	gap: 3px;
	padding: 40px 22px 20px;
	color: #fff;
	background: linear-gradient(180deg, rgba(20, 18, 14, 0) 0%, rgba(20, 18, 14, 0.75) 100%);
	opacity: 0;
	transform: translateY(10px);
	transition: opacity 0.35s ease, transform 0.35s ease;
}

.hover-panel-caption b {
	font-size: 20px;
	font-weight: 500;
}

.hover-panel-caption em {
	font-size: 13px;
	font-style: normal;
	color: rgba(255, 255, 255, 0.86);
}

.hover-gallery.has-hover .hover-panel.is-active .hover-panel-caption,
.hover-panel:focus-visible .hover-panel-caption {
	opacity: 1;
	transform: translateY(0);
}

.hover-panel:focus-visible {
	outline: 2px solid #a67c52;
	outline-offset: -2px;
}

.product-showcase-section {
	overflow: hidden;
}

.product-showcase {
	display: flex;
	gap: 10px;
	width: 100vw;
	max-width: none;
	height: 500px;
	margin-left: calc(50% - 50vw);
	padding: 0 14px;
}

.product-panel {
	position: relative;
	display: block;
	flex: 0.72 1 0;
	min-width: 0;
	overflow: hidden;
	background: #d4d0c9;
	border-radius: 6px;
	transition: flex 0.62s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.35s ease;
}

.product-panel img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.015) translate(var(--product-x, 0px), var(--product-y, 0px));
	transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1), filter 0.35s ease;
}

.product-panel.is-active,
.product-panel:hover,
.product-panel:focus-visible {
	flex-grow: 2.2;
	box-shadow: 0 18px 32px rgba(38, 34, 28, 0.18);
}

.product-showcase:has(.product-panel:hover) .product-panel:not(:hover),
.product-showcase:has(.product-panel:focus-visible) .product-panel:not(:focus-visible) {
	filter: saturate(0.7) brightness(0.86);
}

.product-panel-info {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
	padding: 96px 36px 32px;
	color: #fff;
	background: linear-gradient(180deg, rgba(24, 22, 18, 0) 0%, rgba(24, 22, 18, 0.82) 100%);
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 0.34s ease, transform 0.34s ease;
}

.product-panel:hover .product-panel-info,
.product-panel:focus-visible .product-panel-info {
	opacity: 1;
	transform: translateY(0);
}

.product-panel-info small {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.8);
}

.product-panel-info strong {
	font-size: 30px;
	font-weight: 500;
}

.product-panel-info em {
	max-width: 420px;
	font-size: 14px;
	font-style: normal;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.88);
}

.product-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
}

.product-tags i {
	padding: 3px 10px;
	border: 1px solid rgba(255, 255, 255, 0.55);
	border-radius: 20px;
	font-size: 12px;
	font-style: normal;
}

.product-panel-info b {
	margin-top: 8px;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.02em;
}

.product-panel-info b span {
	margin-left: 8px;
	font-size: 18px;
}

.product-panel:focus-visible {
	outline: 2px solid #a67c52;
	outline-offset: -2px;
}

@media (max-width: 768px) {
	.footer-trust {
		justify-content: space-between;
		gap: 12px;
		font-size: 12px;
	}

	.footer-trust span {
		gap: 4px;
	}

	.footer-trust img {
		width: 18px;
		height: 18px;
	}

	.hero.hero-showcase {
		padding-top: 0;
	}

	.hero-showcase-frame {
		width: 100%;
		border-radius: 0;
	}

	.hero-visual {
		height: calc(100% - 86px);
	}

	.hero-tabs {
		overflow-x: auto;
		grid-template-columns: repeat(4, 170px);
		height: 104px;
		flex-basis: 104px;
		scroll-snap-type: x proximity;
	}

	.hero-tab {
		height: 104px;
		min-height: 0;
		padding: 12px 13px 12px;
		scroll-snap-align: start;
	}

	.hero-tab b {
		font-size: 14px;
	}

	.depth-feature {
		grid-template-columns: 1fr;
		gap: 30px;
		width: 100%;
		margin-left: 0;
		padding: 0;
	}

	.advantages {
		grid-template-columns: repeat(2, 1fr);
		gap: 18px 10px;
	}

	.depth-copy h2 {
		font-size: 22px;
		margin-bottom: 8px;
	}

	.depth-copy p {
		margin: 0 0 8px;
		font-size: 13px;
		line-height: 1.6;
	}

	.depth-copy .btn {
		margin-top: 6px;
		padding: 9px 16px;
		font-size: 13px;
	}

	.depth-carousel {
		min-height: 376px;
		padding-left: 0;
	}

	.depth-copy {
		padding: 0 16px;
	}

	.depth-track {
		height: 320px;
	}

	.depth-card {
		height: 290px;
	}

	.hover-gallery-section {
		overflow: hidden;
	}

	.hover-gallery {
		height: 330px;
		gap: 5px;
		overflow-x: auto;
		overflow-y: hidden;
		scroll-snap-type: x proximity;
		padding-bottom: 4px;
	}

	.hover-panel {
		flex: 0 0 72%;
		scroll-snap-align: center;
	}

	.hover-gallery.has-hover .hover-panel:not(.is-active),
	.hover-gallery.has-hover .hover-panel.is-active {
		flex-grow: 0;
	}

	.hover-panel-caption {
		opacity: 1;
		transform: translateY(0);
		padding: 34px 16px 16px;
	}

	.hover-panel-caption b {
		font-size: 17px;
	}

	.product-showcase {
		width: 100%;
		height: 390px;
		margin-left: 0;
		gap: 5px;
		overflow-x: auto;
		overflow-y: hidden;
		scroll-snap-type: x proximity;
		padding: 0 4%;
	}

	.product-panel,
	.product-panel:hover,
	.product-panel:focus-visible {
		flex: 0 0 78%;
		box-shadow: none;
		scroll-snap-align: center;
	}

	.product-panel-info {
		opacity: 1;
		transform: translateY(0);
		padding: 70px 22px 22px;
	}

	.product-panel-info strong {
		font-size: 24px;
	}

	.product-panel-info em {
		font-size: 13px;
	}
}

.home-compare,
.home-faq {
	background: #f4f2ed
}

.home-cta {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	color: #fff;
	background: #2b302e url('../images/hero-door.png') center/cover no-repeat
}

.home-cta:before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: -1;
	background: rgba(164, 116, 48, .72)
}

.home-cta-inner {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	width: 80%;
	padding: 30px 0
}

.home-cta h2 {
	margin: 0 0 8px;
	font-size: 28px;
	font-weight: 500
}

.home-cta p {
	margin: 0;
	color: rgba(255, 255, 255, .86)
}

.home-cta .btn {
	background: #fff;
	color: #76502b;
	white-space: nowrap
}

.home-cta .btn {
	transition: background-color .25s ease, color .25s ease, transform .25s ease, box-shadow .25s ease
}

.home-cta .btn:hover,
.home-cta .btn:focus-visible {
	background: #d7a45a;
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 8px 18px rgba(0, 0, 0, .16)
}

@media(max-width:768px) {
	.home-cta-inner {
		display: block;
		width: 92%;
		padding: 24px 0
	}

	.home-cta .btn {
		margin-top: 16px
	}
}

.compare-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 18px;
	max-width: 980px;
	margin: auto
}

.compare-card {
	background: #fff;
	border: 1px solid #e2ddd4
}

.compare-card img {
	width: 100%;
	height: 260px;
	object-fit: cover
}

.compare-card-body {
	padding: 22px 24px
}

.compare-card h3 {
	margin: 0 0 14px;
	font-size: 23px;
	font-weight: 500;
	color: #303331
}

.compare-card p {
	margin: 0 0 16px;
	color: #6f6c66;
	font-size: 14px
}

.compare-list {
	margin: 0;
	padding: 0;
	list-style: none;
	border-top: 1px solid #ece8e1
}

.compare-list li {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	padding: 10px 0;
	border-bottom: 1px solid #ece8e1;
	font-size: 14px
}

.compare-list span {
	color: #858078
}

.compare-list b {
	font-weight: 500;
	color: #303331;
	text-align: right
}

.faq-list {
	max-width: 880px;
	margin: auto;
	border-top: 1px solid #dcd7cf
}

.faq-item {
	border-bottom: 1px solid #dcd7cf
}

.faq-item summary {
	cursor: pointer;
	list-style: none;
	padding: 18px 42px 18px 0;
	position: relative;
	font-size: 17px;
	color: #303331
}

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

.faq-item summary:after {
	content: '+';
	position: absolute;
	right: 8px;
	top: 13px;
	font-size: 24px;
	color: #a06b3b
}

.faq-item[open] summary:after {
	content: '−'
}

.faq-item p {
	margin: 0;
	padding: 0 42px 18px 0;
	color: #6f6c66;
	font-size: 14px
}

@media(max-width:768px) {
	.compare-grid {
		grid-template-columns: 1fr;
		gap: 14px
	}

	.compare-card img {
		height: 220px
	}

	.compare-card-body {
		padding: 18px
	}

	.faq-item summary {
		font-size: 15px
	}
}

.about-benefit>img {
	width: 42px;
	height: 42px;
	object-fit: contain;
	margin: 0 auto 12px
}

.honors {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px
}

.honor {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	padding: 18px 14px;
	border: 1px solid #ddd5c9;
	background: #fff;
	text-align: center
}

.honor img {
	width: 46px;
	height: 46px;
	object-fit: contain
}

.honor b {
	font-size: 14px;
	font-weight: 500
}

@media(max-width:768px) {
	.honors {
		grid-template-columns: repeat(2, 1fr)
	}
}

.page-products .grid .card {
	position: relative;
	overflow: hidden;
	transition: transform .35s ease, box-shadow .35s ease
}

.grid-3 {
	grid-template-columns: repeat(3, 1fr)
}

.related-products {
	margin-top: 48px;
	padding-top: 32px;
	border-top: 1px solid #e5e1da
}

@media(max-width:768px) {
	.grid-3 {
		grid-template-columns: 1fr
	}
}

.page-products .grid .card:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 30px rgba(45, 38, 30, .18)
}

.page-products .grid .card:after {
	content: '悬停查看方案';
	position: absolute;
	left: 16px;
	bottom: 58px;
	padding: 5px 10px;
	color: #fff;
	background: rgba(80, 58, 36, .78);
	font-size: 12px;
	opacity: 0;
	transform: translateY(8px);
	transition: opacity .3s ease, transform .3s ease
}

.page-products .grid .card:hover:after {
	opacity: 1;
	transform: translateY(0)
}

.video-modal {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity .3s ease, visibility .3s ease
}

.video-modal.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto
}

.video-modal-dialog {
	transform: translateY(18px) scale(.96);
	transition: transform .35s ease
}

.video-modal.is-open .video-modal-dialog {
	transform: translateY(0) scale(1)
}

.video-card:before {
	content: '▶';
	position: absolute;
	left: 50%;
	top: 42%;
	z-index: 2;
	transform: translate(-50%, -50%);
	width: 56px;
	height: 56px;
	border: 2px solid #fff;
	border-radius: 50%;
	display: grid;
	place-items: center;
	color: #fff;
	background: rgba(80, 58, 36, .8);
	font-size: 20px;
	box-shadow: 0 6px 18px rgba(0, 0, 0, .24);
	transition: transform .5s cubic-bezier(.22, .61, .36, 1)
}

.video-card:hover:before {
	transform: translate(-50%, -50%) scale(1.04)
}

@media (prefers-reduced-motion: reduce) {
	.video-card:before {
		transition: none
	}

	.video-card:hover,
	.video-card:hover > img {
		transform: none
	}

	.video-card:hover:before {
		transform: translate(-50%, -50%)
	}
}

.about-extra:first-of-type {
	width: 100vw;
	margin-left: calc(50% - 50vw);
	padding: 58px 4vw;
	background: #f4f2ed
}

.about-extra:first-of-type h2 {
	margin-top: 0
}

.about-benefits {
	max-width: 1200px;
	margin: auto
}

.about-benefit {
	background: transparent;
	border-top: 0;
	text-align: center;
	transform: none !important;
	box-shadow: none !important
}

.about-benefit>img {
	display: block;
	margin: 0 auto 12px
}

.honors {
	max-width: 1200px;
	margin: auto;
	display: flex;
	gap: 16px;
	overflow: hidden;
	justify-content: flex-start
}

.honor {
	flex: 0 0 240px;
	min-height: 150px;
	justify-content: center
}

.honor b {
	display: block
}

@media(max-width:768px) {
	.about-extra:first-of-type {
		padding: 42px 4vw
	}

	.honor {
		flex-basis: 210px
	}
}

.honors {
	max-width: 1000px;
	margin: auto;
	display: flex;
	gap: 14px;
	overflow: hidden;
	justify-content: flex-start;
	padding: 8px 0 14px
}

.honor {
	flex: 0 0 30%;
	min-height: 220px;
	justify-content: flex-end;
	padding: 0 16px 20px;
	position: relative;
	overflow: hidden;
	color: #fff;
	background: #3b3935;
	border: 0
}

.honor:before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(30, 28, 24, .05), rgba(30, 28, 24, .82));
	z-index: 0
}

.honor img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: .72
}

.honor b {
	position: relative;
	z-index: 1;
	display: block;
	font-size: 15px;
	font-weight: 500
}

.honor:first-child {
	flex-basis: 54%;
	transform: scale(1.02)
}

@media(max-width:768px) {
	.honor {
		flex-basis: 72%;
		min-height: 200px
	}

	.honor:first-child {
		flex-basis: 82%
	}
}

.honors {
	max-width: 1000px;
	margin: auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	overflow: visible;
	padding: 0
}

.honor,
.honor:first-child {
	flex: none;
	min-height: 150px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 18px 12px;
	position: relative;
	color: #6f6559;
	background: #fff;
	border: 1px solid #ddd5c9;
	transform: none
}

.honor:before {
	display: none
}

.honor img {
	position: static;
	width: 48px;
	height: 48px;
	object-fit: contain;
	opacity: 1;
	filter: none
}

.honor b {
	position: static;
	display: block;
	font-size: 14px;
	font-weight: 500
}

@media(max-width:768px) {
	.honors {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px
	}

	.honor {
		min-height: 140px
	}
}

.honors {
	position: relative;
	display: block;
	height: 220px;
	overflow: hidden
}

.honor {
	position: absolute;
	top: 0;
	height: 190px;
	transition: left .55s ease, opacity .4s ease, transform .55s ease
}

.honor[data-honor-position="active"] {
	left: 25%;
	width: 50%;
	opacity: 1;
	z-index: 3;
	transform: scale(1)
}

.honor[data-honor-position="previous"] {
	left: 2%;
	width: 22%;
	opacity: .7;
	z-index: 1;
	transform: scale(.94)
}

.honor[data-honor-position="next"] {
	right: 2%;
	width: 22%;
	opacity: .7;
	z-index: 1;
	transform: scale(.94)
}

.honor[data-honor-position="hidden"] {
	left: 50%;
	width: 50%;
	opacity: 0;
	z-index: 0;
	transform: scale(.88)
}

@media(max-width:768px) {
	.honors {
		height: 210px
	}

	.honor {
		height: 180px
	}

	.honor[data-honor-position="active"] {
		left: 10%;
		width: 80%
	}

	.honor[data-honor-position="previous"] {
		left: -30%;
		width: 60%
	}

	.honor[data-honor-position="next"] {
		right: -30%;
		width: 60%
	}
}

.honors {
	height: 390px;
	max-width: 1120px;
	padding: 0
}

.honor,
.honor:first-child {
	top: 0;
	height: 320px;
	padding: 0 0 18px;
	border: 0;
	border-radius: 0;
	background: #e8e4de;
	box-shadow: 0 18px 28px rgba(35, 31, 25, .12);
	transition: left .55s ease, right .55s ease, width .55s ease, opacity .4s ease, transform .55s ease
}

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

.honor:after {
	content: '';
	position: absolute;
	inset: auto 0 0;
	height: 35%;
	background: linear-gradient(transparent, rgba(20, 18, 15, .58));
	z-index: 1
}

.honor b {
	position: absolute;
	left: 18px;
	bottom: 14px;
	z-index: 2;
	color: #fff;
	font-size: 14px
}

.honor[data-honor-position="active"] {
	left: 20%;
	width: 60%;
	opacity: 1;
	z-index: 3;
	transform: none
}

.honor[data-honor-position="previous"] {
	left: 0;
	width: 16%;
	opacity: .78;
	z-index: 1;
	transform: rotate(-1deg)
}

.honor[data-honor-position="next"] {
	right: 0;
	width: 16%;
	opacity: .78;
	z-index: 1;
	transform: rotate(1deg)
}

.honor[data-honor-position="hidden"] {
	left: 50%;
	width: 60%;
	opacity: 0;
	z-index: 0;
	transform: scale(.9)
}

@media(max-width:768px) {
	.honors {
		height: 300px
	}

	.honor,
	.honor:first-child {
		height: 240px
	}

	.honor[data-honor-position="active"] {
		left: 8%;
		width: 84%
	}

	.honor[data-honor-position="previous"] {
		left: -35%;
		width: 58%
	}

	.honor[data-honor-position="next"] {
		right: -35%;
		width: 58%
	}
}

.page-products .grid .card:after {
	display: none
}

.page-products .grid .card:before {
	display: none
}

.page-products .grid .card img {
	position: relative;
	z-index: 1;
	transition: transform .45s ease, filter .35s ease, opacity .2s ease;
	backdrop-filter: blur(0)
}

.page-products .grid .card.is-swapping img {
	transform: scale(1.04);
	filter: saturate(.78) blur(6px);
	opacity: .72
}

.honors-carousel-section {
	width: 100vw;
	margin-left: calc(50% - 50vw);
	padding: 58px 4vw;
	background: #fff
}

.honors-carousel-section h2 {
	text-align: center;
	margin: 0 0 26px;
	font-size: 28px;
	font-weight: 500
}

.honors-carousel {
	max-width: 1120px;
	margin: auto
}

.honors-carousel .depth-track {
	height: 340px
}

.honors-carousel .depth-card {
	height: 320px
}

.honors-carousel .depth-controls {
	margin-top: 18px
}

@media(max-width:768px) {
	.honors-carousel-section {
		padding: 42px 4vw
	}

	.honors-carousel .depth-track {
		height: 300px
	}

	.honors-carousel .depth-card {
		height: 270px
	}
}

.page-products .content {
	padding-top: 0
}

.page-products .grid .card,
.page-products .grid .card-body {
	overflow: hidden
}

.page-products .card-body p {
	margin: 6px 0 0;
	color: #7b756c;
	font-size: 13px;
	line-height: 1.5;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis
}

.news-list article {
	overflow: hidden
}

.news-list article>img {
	overflow: hidden
}

.news-list article>div {
	min-width: 0;
	overflow: hidden
}

.news-list article h3 {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis
}

.news-list article p {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis
}

.news-date {
	display: block;
	margin-top: 4px;
	color: #a06b3b;
	font-size: 12px
}

.page-cases .content {
	padding-top: 0
}

.page-cases .grid .card,
.page-cases .grid .card-body {
	overflow: hidden
}

.page-cases .grid .card-body p {
	margin: 6px 0 0;
	color: #7b756c;
	font-size: 13px;
	line-height: 1.5;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis
}

.list-video .content {
	padding-top: 0
}

.video-card,
.video-card .card-body {
	overflow: hidden
}

.video-card .card-body h3 {
	margin-top: 0
}

.video-card .card-body p {
	margin: 6px 0 0;
	color: #7b756c;
	font-size: 13px;
	line-height: 1.5;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis
}

.video-modal {
	display: grid !important;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity .35s ease, visibility .35s ease
}

.video-modal.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto
}

.video-modal-dialog {
	transform: translateY(24px) scale(.94);
	opacity: 0;
	transition: transform .4s cubic-bezier(.22, .61, .36, 1), opacity .35s ease
}

.video-modal.is-open .video-modal-dialog {
	transform: translateY(0) scale(1);
	opacity: 1
}

.card h3,
.card-body h3 {
	margin: 0
}

.video-modal video {
	width: 100%;
	max-height: 70vh;
	object-fit: cover;
	background: #171817
}

.page-products .content,
.page-cases .content,
.page-video .content,
.page-news .content {
	width: min(1320px, calc(100% - 64px));
	max-width: none
}

.page-products .grid-4,
.page-cases .grid-4,
.page-video .grid-4 {
	grid-template-columns: repeat(3, 1fr);
	gap: 24px
}

.page-news .news-list {
	max-width: 1180px;
	margin: auto
}

.page-news .news-list article {
	grid-template-columns: 240px 1fr;
	gap: 28px;
	padding: 24px 0
}

.page-news .news-list img {
	width: 240px;
	height: 145px
}

@media(max-width:768px) {

	.page-products .content,
	.page-cases .content,
	.page-video .content,
	.page-news .content {
		width: 92%
	}

	.page-products .grid-4,
	.page-cases .grid-4,
	.page-video .grid-4 {
		grid-template-columns: repeat(2, 1fr);
		gap: 14px
	}

	.page-news .news-list article {
		grid-template-columns: 120px 1fr;
		gap: 16px;
		padding: 18px 0
	}

	.page-news .news-list img {
		width: 120px;
		height: 90px
	}
}

.page-news .crumb {
	max-width: 1180px;
	margin: 0 auto
}

.page-products,
.page-cases,
.page-video,
.page-news {
	position: relative
}

.page-products .content,
.page-cases .content,
.page-video .content,
.page-news .content {
	position: relative
}

.page-products .content:before,
.page-products .content:after,
.page-cases .content:before,
.page-cases .content:after,
.page-video .content:before,
.page-video .content:after,
.page-news .content:before,
.page-news .content:after {
	content: '';
	position: absolute;
	top: 94px;
	width: 110px;
	height: 360px;
	background-position: center;
	background-size: cover;
	opacity: .48;
	filter: saturate(.6);
	pointer-events: none
}

.page-products .content:before,
.page-cases .content:before,
.page-video .content:before,
.page-news .content:before {
	left: -142px;
	background-image: url('../images/product-wood-door.png')
}

.page-products .content:after,
.page-cases .content:after,
.page-video .content:after,
.page-news .content:after {
	right: -142px;
	background-image: url('../images/case-exterior.png')
}

@media(max-width:1480px) {

	.page-products .content:before,
	.page-products .content:after,
	.page-cases .content:before,
	.page-cases .content:after,
	.page-video .content:before,
	.page-video .content:after,
	.page-news .content:before,
	.page-news .content:after {
		display: none
	}
}

.page-products .content:before,
.page-products .content:after,
.page-cases .content:before,
.page-cases .content:after,
.page-video .content:before,
.page-video .content:after,
.page-news .content:before,
.page-news .content:after {
	display: none
}

.floating-tools {
	position: fixed;
	right: 0;
	top: 50%;
	z-index: 18;
	display: grid;
	gap: 8px;
	transform: translateY(-50%);
	animation: floatingToolsIn .6s ease .2s both
}

@keyframes floatingToolsIn {
	from {
		opacity: 0;
		transform: translateY(-50%) translateX(60px)
	}

	to {
		opacity: 1;
		transform: translateY(-50%) translateX(0)
	}
}

.floating-tool {
	width: 48px;
	min-height: 48px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 10px;
	overflow: hidden;
	border: 1px solid #ddd5c9;
	background: #fff;
	color: #5d4b3a;
	box-shadow: 0 8px 20px rgba(30, 26, 22, .12);
	cursor: pointer;
	transition: width .35s ease, background .25s ease
}

.floating-tool img {
	flex: 0 0 24px;
	width: 24px;
	height: 24px;
	object-fit: contain;
	margin-left: 11px
}

.floating-tool span {
	white-space: nowrap;
	font-size: 13px;
	opacity: 0;
	transition: opacity .2s ease
}

.floating-phone:hover,
.floating-qr:hover {
	width: 168px;
	background: #f7f1e8
}

.floating-phone:hover span,
.floating-qr:hover span {
	opacity: 1
}

.floating-top {
	justify-content: center;
	font-size: 22px
}

.floating-top:hover {
	background: #a06b3b;
	color: #fff
}

@media(max-width:768px) {
	.floating-tools {
		right: 10px
	}

	.floating-phone:hover,
	.floating-qr:hover {
		width: 150px
	}
}

.floating-phone:hover,
.floating-qr:hover {
	width: 168px;
	background: #f7f1e8
}

.floating-phone:hover span,
.floating-qr:hover span {
	opacity: 1
}

.floating-qr {
	background: #5d4b3a;
	color: #fff
}

.floating-qr img {
	filter: invert(1)
}

.floating-qr:hover {
	height: 96px;
	background: #4a392c
}

.floating-qr:hover img {
	width: 72px;
	height: 72px;
	margin-left: 10px
}

.floating-tools {
	right: 0;
	gap: 10px
}

.floating-tool {
	border-color: #e2d8ca;
	box-shadow: 0 10px 24px rgba(45, 36, 26, .14)
}

.floating-qr img {
	width: 24px;
	height: 24px;
	object-fit: cover
}

.floating-qr:hover {
	width: 188px;
	height: 112px
}

.floating-qr:hover img {
	width: 88px;
	height: 88px;
	margin-left: 10px;
	image-rendering: auto
}

.floating-qr:hover span {
	opacity: 1
}

.floating-phone:hover {
	width: 180px
}

@media(max-width:768px) {
	.floating-tools {
		right: 0
	}

	.floating-qr:hover {
		width: 172px;
		height: 100px
	}

	.floating-qr:hover img {
		width: 76px;
		height: 76px
	}
}

.floating-tools {
	width: 190px;
	display: block
}

.floating-tool {
	position: absolute;
	right: 0
}

.floating-phone {
	top: 0
}

.floating-qr {
	top: 58px
}

.floating-top {
	top: 116px
}

.floating-phone:hover,
.floating-qr:hover {
	right: 0
}

.floating-tools .floating-tool:not(:hover) {
	transform: none
}

.floating-qr:hover {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 6px
}

.floating-qr:hover img {
	margin: 0;
	width: 72px;
	height: 72px
}

.floating-qr:hover span {
	opacity: 1
}

.floating-phone,
.floating-top {
	background: #c9a66b;
	color: #fff;
	border-color: #c9a66b
}

.floating-phone img {
	filter: brightness(0) invert(1)
}

.floating-phone:hover,
.floating-top:hover {
	background: #ad864e;
	color: #fff
}

.floating-phone,
.floating-top {
	background: #c9a66b;
	color: #fff;
	border-color: #c9a66b
}

.floating-phone:hover,
.floating-top:hover {
	background: #ad864e;
	color: #fff
}

.floating-qr:hover {
	align-items: center !important;
	justify-content: center !important;
	text-align: center
}

.floating-qr:hover img {
	align-self: center !important;
	margin: 0 !important
}

.floating-qr {
	background: #c9a66b;
	color: #fff;
	border-color: #c9a66b
}

.floating-qr img {
	filter: none;
	background: #fff
}

.floating-qr:hover {
	background: #ad864e
}

.floating-qr {
	justify-content: center !important;
	align-items: center
}

.floating-qr img {
	margin-left: 0 !important
}

.floating-qr:hover {
	justify-content: center !important;
	align-items: center
}

.floating-qr {
	position: absolute;
	display: flex !important;
	flex-direction: row !important;
	align-items: center !important;
	justify-content: center !important;
	overflow: hidden
}

.floating-qr img {
	position: static !important;
	inset: auto !important;
	display: block !important;
	flex: 0 0 24px !important;
	width: 24px !important;
	height: 24px !important;
	max-width: 24px !important;
	object-fit: contain !important;
	margin: 0 !important;
	transform: none !important
}

.floating-qr:hover {
	flex-direction: column !important
}

.floating-qr:hover img {
	flex: 0 0 72px !important;
	width: 72px !important;
	height: 72px !important;
	max-width: 72px !important
}

.floating-qr .qr-code {
	display: none !important
}

.floating-qr:hover .qr-icon {
	display: none !important
}

.floating-qr:hover .qr-code {
	display: block !important;
	flex: 0 0 72px !important;
	width: 72px !important;
	height: 72px !important;
	max-width: 72px !important;
	filter: none !important
}

.floating-qr:hover span {
	display: block !important;
	opacity: 1
}

.floating-qr .qr-icon {
	display: block !important;
	width: 24px !important;
	height: 24px !important
}

.floating-qr .qr-code {
	display: none !important
}

.floating-qr:hover .qr-icon {
	display: none !important
}

.floating-qr:hover .qr-code {
	display: block !important;
	width: 72px !important;
	height: 72px !important;
	margin: 0 !important;
	filter: none !important
}

.floating-qr:hover span {
	display: block !important;
	opacity: 1
}

.floating-qr .qr-icon {
	display: block !important;
	position: static !important;
	flex: none !important;
	flex-shrink: 0 !important;
	min-width: 24px !important;
	min-height: 24px !important;
	width: 24px !important;
	height: 24px !important;
	object-fit: contain !important;
	object-position: center !important;
	margin: 0 auto !important
}

.floating-qr:not(:hover) {
	display: grid !important;
	place-items: center !important;
	align-content: center !important;
	justify-content: center !important;
	padding: 0 !important
}

.floating-qr:not(:hover) .qr-icon {
	grid-area: 1/1;
	width: 24px !important;
	height: 24px !important;
	min-width: 24px !important;
	min-height: 24px !important;
	margin: 0 !important;
	justify-self: center !important;
	align-self: center !important
}

.floating-qr:hover {
	display: flex !important;
	flex-direction: column !important;
	align-items: center !important;
	justify-content: center !important;
	padding: 8px !important
}

.floating-qr:hover .qr-code {
	margin: 0 !important;
	align-self: center !important
}

.floating-qr:hover span {
	margin: 0 !important;
	text-align: center
}

.floating-service {
	top: 0
}

.floating-service img {
	filter: none
}

.floating-service:hover {
	width: 168px;
	background: #ad864e;
	color: #fff
}

.floating-service:hover span {
	opacity: 1
}


.floating-tools .floating-service {
	top: 0
}

.floating-tools .floating-phone {
	top: 58px
}

.floating-tools .floating-top {
	top: 116px
}

.floating-service {
	background: #c9a66b;
	color: #fff;
	border-color: #c9a66b
}

.floating-service img {
	width: 24px !important;
	height: 24px !important;
	filter: none !important;
	object-fit: contain !important
}

.floating-service:hover {
	background: #ad864e
}
@media(max-width:768px){.section-head h2{font-size:24px}.section-head p{font-size:12px}.product-panel-info strong{font-size:20px}.product-panel-info em{font-size:12px}.product-panel-info small{font-size:11px}.product-tags i{font-size:10px;padding:2px 7px}.hover-panel-caption b{font-size:16px}.hover-panel-caption em{font-size:12px}.depth-copy h2{font-size:22px}.depth-copy p{font-size:13px}.depth-controls span{font-size:12px}.compare-card h3{font-size:20px}.compare-card p,.compare-list li{font-size:12px}.faq-item summary{font-size:14px;padding:14px 34px 14px 0}.faq-item p{font-size:12px}.about-extra h2,.honors-carousel-section h2{font-size:24px}.about-benefit h3{font-size:16px}.about-benefit p{font-size:12px}.honor b{font-size:13px}.inner-title{font-size:24px}.crumb{font-size:12px;padding:12px 0}.detail h1{font-size:24px}.detail h3{font-size:18px}.detail p{font-size:13px}.news-list article h3{font-size:15px}.news-list article p{font-size:12px}.news-date{font-size:11px}.content{padding-bottom:44px}}
@media(max-width:768px){.hero-copy h1,.depth-copy h2,.product-panel-info strong,.compare-card h3{font-size:22px!important}.section-head h2,.inner-title,.detail h1,.about-extra h2,.honors-carousel-section h2{font-size:22px!important}.detail h3,.about-benefit h3{font-size:18px!important}}
