:root {
	--ink: #35241c;
	--brown: #3b241b;
	--brown2: #5b3a2b;
	--gold: #b98235;
	--gold2: #d8b06f;
	--cream: #f7f1e8;
	--paper: #fffdf9;
	--muted: #79695f;
	--line: rgba(91, 58, 43, .16);
	--container: 1280px
}
* {
	box-sizing: border-box
}
html {
	scroll-behavior: smooth
}
body {
	margin: 0;
	color: var(--ink);
	font-family: "Noto Sans TC", sans-serif;
	background: #fbf8f3;
	line-height: 1.8
}
img {
	max-width: 100%;
	display: block
}
a {
	color: inherit;
	text-decoration: none
}
.container {
	width: min(var(--container), calc(100% - 48px));
	margin: auto
}
.siteHeader {
	position: fixed;
	z-index: 100;
	inset: 0 0 auto;
	background: linear-gradient(90deg, #2c1913, #4a2c21);
	color: #fff;
	border-bottom: 1px solid rgba(255, 255, 255, .12);
	box-shadow: 0 5px 25px rgba(43, 26, 19, .12)
}
.headerInner {
	height: 82px;
	width: min(1500px, calc(100% - 38px));
	margin: auto;
	display: flex;
	align-items: center;
	gap: 28px
}
.brand {
	display: flex;
	align-items: center;
	/*gap: 12px;*/
	margin-right: auto;
	white-space: nowrap
}
.brand img {
	width: 82px;
	height: 52px;
	object-fit: contain
}
.brand b {
	font: 600 27px "Noto Serif TC";
	letter-spacing: .12em
}
.brand small {
	display: block;
	font-size: 10px;
	letter-spacing: .4em;
	opacity: .8
}
.mainNav ul {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 25px
}
.mainNav a {
	font-size: 16px;
	padding: 30px 0;
	position: relative
}
.mainNav a:after {
	content: "";
	position: absolute;
	left: 50%;
	right: 50%;
	bottom: 20px;
	height: 1px;
	background: var(--gold2);
	transition: .3s
}
.mainNav a:hover:after, .mainNav a.current:after {
	left: 0;
	right: 0
}
.headerCall {
	padding-left: 22px;
	border-left: 1px solid rgba(255, 255, 255, .2);
	color: #efc982
}
.headerCall small {
	display: block;
	font-size: 10px;
	letter-spacing: .12em
}
.headerCall b {
	font: 600 18px "Noto Serif TC"
}
.menuBtn {
	display: none
}
.section {
	padding: 92px 0;
	position: relative
}
.sectionHead {
	text-align: center;
	max-width: 760px;
	margin: 0 auto 46px
}
.sectionHead h2, .innerBanner h1 {
	font: 600 36px/1.45 "Noto Serif TC";
	letter-spacing: .12em;
	margin: 0 0 8px
}
.sectionHead p, .innerBanner p {
	color: var(--muted);
	margin: 0
}
.sectionHead.ornament h2 {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px
}
.sectionHead.ornament h2:before, .sectionHead.ornament h2:after {
	content: "";
	width: 120px;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--gold))
}
.sectionHead.ornament h2:after {
	background: linear-gradient(90deg, var(--gold), transparent)
}
.sectionHead.light h2, .sectionHead.light p {
	color: #fff
}
.eyebrow {
	color: var(--gold);
	letter-spacing: .22em;
	font-size: 12px;
	font-weight: 600
}
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 150px;
	padding: 12px 24px;
	border-radius: 999px;
	border: 1px solid rgba(93, 57, 39, .25);
	background: rgba(255, 255, 255, .6);
	transition: .3s
}
.btn.primary {
	background: var(--brown2);
	color: #fff;
	border-color: var(--brown2)
}
.btn.light {
	background: #fff;
	color: var(--brown)
}
.btn.gold {
	background: var(--gold);
	color: #fff;
	border-color: var(--gold)
}
.btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 26px rgba(55, 34, 24, .16)
}
.centerAction {
	text-align: center;
	margin-top: 40px
}
.innerBanner {
	min-height: 390px;
	padding: 145px 0 70px;
	background: url('../images/bg/inner-banner.jpg') center/cover;
	display: flex;
	align-items: center;
	text-align: center
}
.innerBanner h1 {
	font-size: 48px
}
.innerBanner span {
	color: var(--gold);
	letter-spacing: .2em;
	font-size: 12px
}
.siteFooter {
	background: linear-gradient(125deg, #2b1913, #463026);
	color: #eee2d5;
	padding: 68px 0 0
}
.footerGrid {
	display: grid;
	grid-template-columns: 1.6fr .8fr .9fr;
	gap: 70px
}
.footerBrand {
	display: flex;
	align-items: center;
	gap: 15px
}
.footerBrand img {
	width: 82px
}
.footerBrand b {
	font: 600 20px "Noto Serif TC"
}
.footerBrand small {
	display: block;
	opacity: .68
}
.siteFooter h3 {
	color: #dcb778;
	font-family: "Noto Serif TC"
}
.siteFooter p {
	color: #d0c1b7
}
.footerBottom {
	margin-top: 48px;
	border-top: 1px solid rgba(255, 255, 255, .12);
	padding: 17px max(24px, calc((100% - var(--container))/2));
	display: flex;
	justify-content: space-between;
	font-size: 12px;
	color: #ad9d92
}

.reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: .8s
}
.reveal.show {
	opacity: 1;
	transform: none
}
@media(max-width:1180px) {
	.mainNav {
		position: fixed;
		top: 82px;
		left: 0;
		right: 0;
		background: #301c15;
		max-height: 0;
		overflow: hidden;
		transition: .35s
	}
	.mainNav.open {
		max-height: 82vh
	}
	.mainNav ul {
		display: block;
		padding: 20px
	}
	.mainNav a {
		display: block;
		padding: 11px 10px
	}
	.headerCall {
		display: none
	}
	.menuBtn {
		display: block;
		width: 42px;
		height: 42px;
		border: 0;
		background: none
	}
	.menuBtn i {
		display: block;
		width: 24px;
		height: 1px;
		background: #fff;
		margin: 6px auto
	}
	.footerGrid {
		grid-template-columns: 1fr 1fr
	}
}
@media(max-width:700px) {
	.container {
		width: min(var(--container), calc(100% - 30px))
	}
	.headerInner {
		height: 70px
	}
	.brand img {
		width: 65px
	}
	.brand span {
		display: none
	}
	.mainNav {
		top: 70px
	}
	.section {
		padding: 70px 0
	}
	.sectionHead h2 {
		font-size: 29px
	}
	.sectionHead.ornament h2:before, .sectionHead.ornament h2:after {
		width: 48px
	}
	.innerBanner {
		min-height: 320px;
		padding-top: 120px
	}
	.innerBanner h1 {
		font-size: 36px
	}
	.footerGrid {
		grid-template-columns: 1fr
	}
	.footerBottom {
		display: block;
		text-align: center
	}
}





.floatContact {
	position: fixed;
	z-index: 90;
	right: 22px;
	top: 48%;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.floatContactBtn {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	box-shadow: 0 8px 25px rgba(0, 0, 0, .18);
	transition:
		transform .3s ease,
		box-shadow .3s ease,
		filter .3s ease;
}

.floatContactBtn svg {
	width: 25px;
	height: 25px;
	display: block;
	fill: currentColor;
}

.floatContactBtn.phone {
	background: #5b392b;
}

.floatContactBtn.line {
	background: #06c755;
}

.floatContactBtn.map {
	background: #8f6a4d;
}

.floatContactBtn:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 28px rgba(0, 0, 0, .24);
	filter: brightness(1.08);
}

.floatContactBtn:focus-visible {
	outline: 2px solid #d7b173;
	outline-offset: 3px;
}

@media (max-width: 640px) {
	.floatContact {
		right: 12px;
		top: auto;
		bottom: 18px;
		transform: none;
		gap: 8px;
	}

	.floatContactBtn {
		width: 46px;
		height: 46px;
	}

	.floatContactBtn svg {
		width: 20px;
		height: 20px;
	}
}