* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html{font-size:16px;}
body {
	font-family: 'PingFang SC', 'Microsoft YaHei', system-ui, -apple-system, sans-serif;
	color: #222222;
	background: #ffffff;
	overflow-x: hidden;
	position: relative;
	
}
a {
	text-decoration: none;
	color: inherit;
}
a:hover {
	opacity: 0.9;
}
ul {
	list-style: none;
}
h1,h2,h3,h4 {
	font-weight:normal;
}
.card-img-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.h80 {
	height:80px;
}
.container {
	width:96%;
	max-width:1440px;
	margin:0px auto;
}
.container1 {
	width:96%;
	max-width:1680px;
	margin:0px auto;
}
.global-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(2px);
	-webkit-backdrop-filter: blur(2px);
	z-index: 997;
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.25s ease;
	visibility: hidden;
}
.global-overlay.active {
	opacity: 1;
	visibility: visible;
}
.navbar {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 4%;
	height: 80px;
	z-index: 1000;
	background: transparent;
	transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
	color: #fff;
}
.navbar.is-scrolled {
	background: rgba(255, 255, 255);
	color: #1a1a1a;
}
.navbar.is-news {
	background:#fff !important;
	color:#222;
}
.navbar.is-white,
.navbar.menu-open {
	background: #ffffff;
	color: #222222;
}
header .logo {
	z-index: 1001;
	white-space: nowrap;
	display: flex;
	align-items: center;
	gap: 8px;
}
.logo-text {
	display: block;
}
.logo img {
	height:48px;
}
.logo-img {
	display: none;
}
.navbar.is-scrolled .logo-text,
.navbar.is-white .logo-text,
.navbar.menu-open .logo-text,
.navbar.is-news .logo-text {
	display: none;
}
.navbar.is-scrolled .logo-img,
.navbar.is-white .logo-img,
.navbar.menu-open .logo-img,
.navbar.is-news .logo-img {
	display: block;
}
.nav-menu {
	display: flex;
	height: 100%;
	align-items: center;
	gap: 60px;
}
.nav-item {
	position: relative;
	height: 100%;
	display: flex;
	align-items: center;
	cursor: pointer;
	font-size: 1rem;
	white-space: nowrap;
	padding: 0 2px;
	color: inherit;
	transition: color 0.2s ease;
}
.nav-item a {
	display: flex;
	align-items: center;
	height: 100%;
	color: inherit;
	transition: color 0.2s ease;
}
.nav-item.mega-active {

}
.nav-item:hover > a {
	color:#f2f2f2;
}
.is-news .nav-item:hover>a{
	color:#6B5E43;
}
.is-scrolled .nav-item:hover>a {
	color:#6B5E43;
}
.nav-item.mega-active>a:hover {
	color:#6B5E43;
}



.hamburger {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 28px;
	height: 20px;
	cursor: pointer;
	z-index: 1002;
	margin-left: 10px;
	transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.hamburger span {
	display: block;
	height: 2.5px;
	width: 100%;
	background: currentColor;
	border-radius: 4px;
	transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
	transform-origin: center;
}
.hamburger.is-active span:nth-child(1) {
	transform: translateY(8.5px) rotate(45deg);
}
.hamburger.is-active span:nth-child(2) {
	opacity: 0;
	transform: scaleX(0);
}
.hamburger.is-active span:nth-child(3) {
	transform: translateY(-8.5px) rotate(-45deg);
}
.mobile-menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: #ffffff;
	color: #1a1a1a;
	padding: 80px 8% 40px;
	z-index: 998;
	transform: translateX(100%);
	transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
	overflow-y: auto;
	display: flex;
	flex-direction: column;
	gap: 6px;
	box-shadow: -8px 0 30px rgba(0, 0, 0, 0.04);
}
.mobile-menu.open {
	transform: translateX(0);
}
.mobile-menu .mobile-nav-item {
	font-size: 14px;
	font-weight: 500;
	border-bottom: 1px solid #f0f0f0;
}
.mobile-menu .mobile-nav-item>a {
	display: block;
	padding: 14px 0;
}
.mobile-sub {
	padding-left: 16px;
	display: flex;
	flex-direction: column;
	gap: 0;
	background: #fafafa;
	border-radius: 0 0 6px 6px;
	margin: 0 -8px 6px -8px;
	padding: 6px 16px;
}
.mobile-sub a {
	font-size: 1rem;
	font-weight: 400;
	color: #333;
	padding: 12px 0;
	border-bottom: 1px solid #eee;
	display: block;
}
.mobile-sub a:last-child {
	border-bottom: none;
}
.mobile-sub a:active {
	background: #f0f0f0;
}
.mobile-toggle {
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	font-size: 18px;
	font-weight: 500;
	padding: 14px 0;
	width: 100%;
	background: transparent;
	border: none;
	color: inherit;
	font-family: inherit;
}
.mobile-toggle .arrow {
	transition: transform 0.3s;
	font-size: 1rem;
	opacity: 0.6;
}
.mobile-toggle .arrow.open {
	transform: rotate(180deg);
}
.mobile-sub-collapse {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.35s ease;
}
.mobile-sub-collapse.open {
	max-height: 600px;
}
.normal-dropdown {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%) translateY(-6px);
	background: #ffffff;
	color: #1a1a1a;
	min-width: 150px;
	padding: 12px 0;
	border-radius: 6px;
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
	pointer-events: none;
}
.nav-item.has-dropdown:hover .normal-dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
	pointer-events: auto;
}
.normal-dropdown a {
	display: block;
	padding: 8px 20px;
	text-align: center;
	font-size: 14px;
	transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.normal-dropdown a:hover {
	background: #f0f0f0;
}
.mega-dropdown-container {
	position: fixed;
	top: 80px;
	left: 0;
	width: 100%;
	background: #ffffff;
	color: #222222;
	padding: 40px 10% 80px;
	opacity: 0;
	visibility: hidden;
	transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
	z-index: 999;
	pointer-events: none;
	max-height: calc(100vh - 80px);
	overflow-y: auto;
}
.mega-dropdown-container.active {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	pointer-events: auto;
}
.grid-6 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px 20px;
}
.project-card {
	text-align: center;
	cursor: default;
	transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
	border-radius: 12px;
	overflow: hidden;
	position: relative;
}
.project-card a {
	display: block;
	cursor: pointer;
	position: relative;
	border-radius: 12px;
	overflow: hidden;
}
.project-card .card-img-wrapper {
	width: 100%;
	height: 260px;
	background: #eaeaea;
	position: relative;
	overflow: hidden;
	border-radius: 12px;
}
.project-card .card-img-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.6s ease;
}
.project-card:hover .card-img-wrapper img {
	transform: scale(1.04);
}
.project-card .card-img-wrapper::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.35);
	transition: opacity 0.4s ease;
	pointer-events: none;
	border-radius: 12px;
	z-index: 1;
}
.project-card:hover .card-img-wrapper::after {
	opacity: 0;
}
.project-card .card-title {
	position: absolute;
	bottom: 20px;
	left: 0;
	width: 100%;
	padding: 0 12px;
	font-size: 20px;
	font-weight: 500;
	color: #ffffff;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
	z-index: 2;
	text-align: center;
	pointer-events: none;
}
.project-card.small-card .card-img-wrapper {
	height: 260px;
}
.project-card.small-card .card-title {
	font-size: 1rem;
	bottom: 16px;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}
.grid-3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.about-card {
	text-align: center;
	cursor: default;
	transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.about-card a {
	display: block;
	cursor: pointer;
}
.about-card .card-img-wrapper {
	width: 100%;
	height: 260px;
	border-radius: 12px;
	overflow: hidden;
	margin-bottom: 18px;
	background: #eaeaea;
	position: relative;
}
.about-card .card-img-wrapper img {
	transition: transform 0.6s ease;
}
.about-card:hover .card-img-wrapper img {
	transform: scale(1.04);
}
.about-card .card-img-wrapper::after {
	display: none;
}
.about-card .card-title {
	font-size: 20px;
	font-weight: 500;
	color: #222222;
	position: static;
	text-shadow: none;
	padding: 0;
	background: transparent;
}
.hero {
	position: relative;
	width: 100%;
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: #fff;
	text-align: center;
	overflow: hidden;
}
.hero video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -2;
}
.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.35);
	z-index: -1;
}
.hero-content {
	z-index: 1;
	padding: 0 18px;
	animation: fadeInUp 1.2s ease;
}
.hero h1 {
	font-size: 60px;
	font-weight: bold;
	line-height: 1.5;
	font-family: Noto Serif SC, Noto Serif SC;
}
.scroll-indicator {
	position: absolute;
	bottom: 16px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
	animation: fadeInUp 1.4s ease 0.4s both;
}
.mouse {
	width: 24px;
	height: 38px;
	border: 2px solid #fff;
	border-radius: 20px;
	position: relative;
}
.mouse::before {
	content: '';
	position: absolute;
	top: 6px;
	left: 50%;
	transform: translateX(-50%);
	width: 4px;
	height: 10px;
	background: #fff;
	border-radius: 3px;
	animation: scrollMouse 2s infinite;
}
.scroll-text {
	width: 24px;
	height: 24px;
	position:relative;
}

.scroll-text img{
	position:absolute;
	left: 50%;
top: 0;
transform: translateX(-50%);
animation: scrollMouse 2s infinite;
}



@keyframes scrollMouse {
	0% {
		top: 6px;
		opacity: 1;
	}
	100% {
		top: 22px;
		opacity: 0;
	}
}
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(28px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
.banner {
	position: relative;
	width: 100%;
	height: 80vh;
	overflow: hidden;
	background-color: #222;
}
.banner1 {
	height:600px;
}
.banner .banner-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}
.banner .banner-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.25);
	z-index: 1;
}
.banner .banner-content {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	z-index: 2;
	font-family: Noto Serif SC, Noto Serif SC;
	padding: 20px 30px;
	color: #ffffff;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}
.banner .title-cn {
	font-size:56px;
	font-weight: 700;
	line-height: 1.2;
	color: #ffffff;
	margin-bottom: 0.5em;
}
.banner .title-en {
	font-size: 40px;
	font-weight: 300;
	text-transform: uppercase;
	color: #ffffff;
	opacity: 0.9;
}
.footer-wrap {
	background:url(../images/zs99.svg) top center #222222 repeat-x;
	padding-top:80px;
	padding-bottom:80px;
}
.footer-wrap .container1 {
	background-color: transparent;
	display: grid;
	grid-template-columns: 1fr 1fr 2fr;
	gap: 40px;
}
.footer-left .logo {
	width: 140px;
	margin-bottom: 100px;
}
.contact-item {
	margin-bottom:1rem;
	color:#aaa;
}
.contact-item .zixun {
	color: rgba(255, 255, 255, 0.64);
	font-size:1rem;
	margin-bottom:32px;
	display:block;
}
.contact-item p {
	font-size:1rem
}
.qrcode-box {
	margin-top:96px;
}
.qrcode-box p {
	color: rgba(255, 255, 255, 0.64);
	font-size:1rem;
	margin-bottom:1rem;
}
.qrcode {
	width:110px;
}
.footer-middle {
	padding-top:152px;
}
.footer-middle h4 {
	color: rgba(255, 255, 255, 0.64);
	font-weight:400;
	font-size:1rem;
}
.footer-middle ul {
	list-style:none;
}
.footer-middle ul li {
	margin-top:48px;
}
.footer-middle ul li a {
	color:#fff;
	text-decoration:none;
	font-size:1rem;
}
.footer-middle ul li:hover a {
	color:#6B5E43;
}
.footer-right h2 {
	font-size:32px;
	font-weight:normal;
	margin-bottom:100px;
	color:#fff;
	font-family: Noto Serif SC, Noto Serif SC;
}
.form-row-top {
	display:grid;
	grid-template-columns:1fr 1fr 1fr;
	gap:24px;
	margin-bottom:50px;
}
.form-row-two {
	display:grid;
	grid-template-columns:1fr 1fr;
	gap:24px;
	margin-bottom:50px;
}
.form-item {
	position:relative;
}
.form-item input,
.form-item select,
.form-item textarea {
	width:100%;
	background:transparent;
	border:none;
	border-bottom:1px solid rgba(255, 255, 255, 0.16);
	height:50px;
	color: rgba(255, 255, 255, 0.4);
	font-size:1rem;
	outline:none;
}
.form-item textarea {
	height:80px;
	resize:none;
}
.submit-btn {
	margin-top:50px;
	background:transparent;
	border:1px solid #fff;
	color:#fff;
	padding:10px 50px;
	font-size:1rem;
	cursor:pointer;
	border-radius: 4px;
	transition: background 0.3s;
}
.submit-btn:hover {
	background:#fff;
	color:#222222;
}
.copyright-bar {
	background: #6B5E43;
	padding:30px 0;
	color: rgba(255, 255, 255, 0.64);
	font-size:14px;
}
.copyright-bar .container1 {
	display:flex;
	justify-content:space-between;
}
.copyright-bar a {
	padding:0 5px;
	color: rgba(255, 255, 255, 0.64);
	text-decoration:none;
}
.copyright-bar a:hover {
	color: rgba(255, 255, 255, 0.54);
}
.pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 60px 0;
	gap: 8px;
}
.pagination a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	font-size: 14px;
	color: #555;
	background-size:28px 28px;
}
.pagination a:hover,
.pagination .active {
	color: #222;
}
.pagination .prev {
	background:url(../images/icon_fy_l_b.svg) no-repeat;
}
.pagination .prev.disabled {
	background:url(../images/icon_fy_l_g.svg) no-repeat;
}
.pagination .next {
	background:url(../images/icon_fy_r_b.svg) no-repeat;
}
.pagination .next.disabled {
	background:url(../images/icon_fy_r_g.svg) no-repeat;
}
.pagination .arrow:hover {
	background-color: #e0e0e0;
}

@media screen and (min-width: 1400px) {
	.navbar {
		padding: 0 6%;
	}
	.grid-6 {
		gap: 28px 24px;
	}
	.grid-3 {
		gap: 28px;
	}
	.project-card .card-img-wrapper,
	.project-card.small-card .card-img-wrapper,
	.about-card .card-img-wrapper {
		height: 300px;
	}
	.mega-dropdown-container {
		padding: 50px 12% 80px;
	}
}

@media screen and (min-width: 1025px) and (max-width: 1399px) {
	.navbar {
		padding: 0 4%;
	}
	.nav-menu {
		gap: 40px;
	}
	.grid-6 {
		gap: 20px 16px;
	}
	.project-card .card-img-wrapper,
	.project-card.small-card .card-img-wrapper,
	.about-card .card-img-wrapper {
		height: 240px;
	}
	.mega-dropdown-container {
		padding: 35px 8% 70px;
	}
}

@media screen and (min-width: 821px) and (max-width: 1024px) {
	.navbar {
		padding: 0 3%;
	}
	.nav-menu {
		gap: 28px;
	}
	.nav-item {
		font-size: 14px;
	}
	.grid-6 {
		grid-template-columns: repeat(3, 1fr);
		gap: 16px 12px;
	}
	.grid-3 {
		grid-template-columns: repeat(3, 1fr);
		gap: 1rem;
	}
	.project-card .card-img-wrapper,
	.project-card.small-card .card-img-wrapper,
	.about-card .card-img-wrapper {
		height: 200px;
	}
	.project-card .card-title {
		font-size: 1rem;
		bottom: 14px;
	}
	.about-card .card-title {
		font-size: 17px;
	}
	.mega-dropdown-container {
		padding: 30px 5% 60px;
	}
	.mobile-menu {
		display: none;
	}
}

@media (max-width: 1440px) {.navbar {
	padding: 0 2%;
}}

@media (max-width: 1200px) {html{font-size:14px;}}



@media screen and (max-width: 820px) {
	.navbar {
		padding: 0 4%;
		height: 68px;
	}
	header .logo {
		font-size: 18px;
	}
	.nav-menu {
		display: none;
	}
	.hamburger {
		display: flex;
	}
	.mega-dropdown-container {
		display: none;
	}
	.mobile-menu {
		padding: 72px 5% 30px;
	}
	.grid-6 {
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
	}
	.grid-3 {
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
	}
	.project-card .card-img-wrapper,
	.project-card.small-card .card-img-wrapper,
	.about-card .card-img-wrapper {
		height: 200px;
	}
	.project-card .card-title {
		font-size: 1rem;
		bottom: 14px;
	}
	.about-card .card-title {
		font-size: 17px;
	}
	.hero h1 {
		font-size: clamp(1.6rem, 4vw, 2.8rem);
	}
}

@media screen and (max-width: 768px) {
	
	html{font-size:14px;}
	
	.container {
	width: 90%;
}

.container1 {
	width: 90%;
}


	
	.logo img {
	height: 40px;
}
	.navbar {
		height: 60px;
	}
	.banner {
		height: 400px;
	}
	.banner .title-cn {
		font-size: 2.0rem;
	}
	.banner .title-en {
		font-size: 1.0rem;
		letter-spacing: 0.1em;
	}
	.footer-wrap .container1 {
		grid-template-columns: 1fr;
	}
	.footer-left {
		text-align:center;
	}
	.footer-left .logo {
		width: 100%;
		text-align:center;
		margin-bottom: 50px;
	}
	.contact-item {
		margin-bottom:0;
		width: 100%;
		float: left;
	}
	.contact-item .zixun {
		margin-bottom: 22px;
	}
	.contact-item p {
		
	}
	.qrcode-box {
		width:100%;
		float:right;
		margin-top: 30px;
	}
	.qrcode-box p {
		
	}
	.qrcode {
		width: 90px;
	}
	.footer-middle {
		display: none;
	}
	.footer-right h2 {
		font-size: 2rem;
		margin-bottom: 40px;
		text-align: center;
	}
	.form-row-top {
		grid-template-columns: 1fr;
		margin-bottom:20px;
	}
	.form-row-two {
		grid-template-columns: 1fr;
		margin-bottom: 24px;
	}
	.submit-btn {
		margin: 0px auto;
		display: block;
		margin-top: 50px;
	}
	.copyright-bar .container1 {
		flex-direction: column;
		text-align: center;
		gap:10px;
	}
	.copyright-bar {
		font-size: 11px;
		padding:20px 0;
	}
	.mobile-menu {
		padding: 60px 5% 20px;
	}
	.mobile-toggle {
		font-size: 1rem;
		padding: 12px 0;
	}
	.mobile-sub a {
		font-size: 15px;
		padding: 10px 0;
	}
	.grid-6 {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}
	.grid-3 {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}
	.project-card .card-img-wrapper,
	.project-card.small-card .card-img-wrapper,
	.about-card .card-img-wrapper {
		height: 160px;
	}
	.project-card .card-title {
		font-size: 14px;
		bottom: 10px;
	}
	.about-card .card-title {
		font-size: 15px;
	}
	.hero-content {
	display: none;
}
	.hero h1 {
		font-size: clamp(1.4rem, 3.5vw, 2rem);
	}
	.scroll-indicator {
		bottom: 20px;
	}
	.mouse {
		width: 20px;
		height: 32px;
	}
	.mouse::before {
		height: 8px;
		top: 5px;
	}
}

@media screen and (max-width: 480px) {
	.navbar {
		height: 60px;
		padding: 0 4%;
	}
	header .logo {
		font-size: 1rem;
	}
	.logo-img {
		height: 28px;
	}
	.mobile-menu {
		padding: 60px 5% 20px;
	}
	.mobile-toggle {
		font-size: 15px;
		padding: 10px 0;
	}
	.mobile-sub a {
		font-size: 14px;
		padding: 8px 0;
	}
	.grid-6 {
		grid-template-columns: 1fr;
		gap: 12px;
	}
	.grid-3 {
		grid-template-columns: 1fr;
		gap: 12px;
	}
	.project-card .card-img-wrapper,
	.project-card.small-card .card-img-wrapper,
	.about-card .card-img-wrapper {
		height: 200px;
	}
	.project-card .card-title {
		font-size: 15px;
		bottom: 12px;
	}
	.about-card .card-title {
		font-size: 1rem;
	}
	.hero h1 {
		font-size: clamp(1.2rem, 3vw, 1.8rem);
	}
	.scroll-indicator {
		bottom: 20px;
	}
	.mouse {
		width: 20px;
		height: 32px;
	}
	.mouse::before {
		height: 8px;
		top: 5px;
	}
	.banner {
		height: 260px;
	}
	.banner .title-cn {
		font-size: 1.5rem;
	}
	.banner .title-en {
		font-size: 0.75rem;
		letter-spacing: 0.08em;
	}
}

@media screen and (max-height: 500px) and (orientation: landscape) {
	.hero {
		height: 110vh;
		min-height: 400px;
	}
	.hero h1 {
		font-size: clamp(1rem, 2.5vw, 1.6rem);
	}
	.scroll-indicator {
		bottom: 12px;
	}
	.mouse {
		width: 18px;
		height: 28px;
	}
	.mouse::before {
		height: 6px;
		top: 4px;
	}
}