	/* ============ Announcement Bar (深红色) ============ */
	.announcement-bar {
		background: #67082a;
		color: #fff;
		text-align: center;
		padding: 15px 20px;
		font-size: 14px;
		letter-spacing: 0.5px;
	}
	.announcement-bar strong { color: #f5d5a0; font-weight: 700; }

	/* ============ Header ============ */
	.site-header {
		position: sticky;
		top: 0;
		z-index: 1000;
		background: #fff;
		padding: 0 40px;
		height: 72px;
		display: flex;
		align-items: center;
		justify-content: space-between;
		border-bottom: 1px solid #f0f0f0;
	}
	.site-logo {
		font-family: 'Lora', serif;
		font-size: 24px;
		font-weight: bold;
		letter-spacing: 3px;
		color: #1a1a1a;
	}
	.main-nav {
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		display: flex;
		gap: 28px;
		align-items: center;
	}
	.main-nav a {
		font-size: 14px;
		font-weight: 400;
		color: #1a1a1a;
		letter-spacing: 1px;
		transition: opacity .3s;
	}
	.main-nav a:hover { opacity: 0.6; }
	.header-actions { display: flex; gap: 18px; align-items: center; }
	.header-actions a {
		font-size: 13px;
		color: #1a1a1a;
		transition: opacity .3s;
	}
	.header-actions a:hover { opacity: 0.6; }
	.menu-toggle { display: none; font-size: 22px; }
		/* ============ Saint of Flowers Banner ============ */
	.saint-banner-section {
		position: relative;
		width: 100%;
		padding: 80px 40px;
		background: url('https://www.huazhiyulc.com/static/index/image/bg3.jpg') center/cover no-repeat;
		text-align: center;
		color: #fff;
	}
	.saint-banner-section::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: rgba(0,0,0,0.25);
	}
	.saint-banner-content {
		position: relative;
		z-index: 2;
		max-width: 800px;
		margin: 0 auto;
	}
	.saint-banner-subtitle {
		font-size: 12px;
		letter-spacing: 4px;
		text-transform: uppercase;
		margin-bottom: 24px;
		font-weight: 500;
	}
	.saint-banner-title {
		font-family: 'Lora', serif;
		font-size: 40px;
		font-weight: 400;
		line-height: 1.3;
		margin-bottom: 20px;
		color: #fff;
	}
	.saint-banner-desc {
		font-size: 15px;
		line-height: 1.8;
		opacity: 0.95;
		margin-bottom: 32px;
	}
	.saint-banner-btn {
		display: inline-block;
		font-size: 12px;
		letter-spacing: 2px;
		text-transform: uppercase;
		padding: 14px 32px;
		background: #e8ddd4;
		color: #1a1a1a;
		transition: all .3s;
		font-weight: 500;
	}
	.saint-banner-btn:hover {
		background: #d4c5b9;
	}

		/* ============ Footer ============ */
	.site-footer {
		background: #fcf9f7;
		color: #535353;
		padding: 70px 40px 30px;
	}
	.footer-top {
		display: grid;
		grid-template-columns: 1.5fr 1fr 1fr 1fr;
		gap: 50px;
		margin-bottom: 50px;
		max-width: 1400px;
		margin-left: auto;
		margin-right: auto;
	}
	.footer-brand h3 {
		font-family: 'Lora', serif;
		font-size: 30px;
		color: #000;
		margin-bottom: 16px;
		letter-spacing: 2px;
		font-weight: 400;
	}
	.footer-brand p { font-size: 14px; line-height: 1.8; }
	.footer-col h4 {
		font-size: 12px;
		letter-spacing: 2px;
		text-transform: uppercase;
		color: #000;
		margin-bottom: 20px;
		font-weight: 500;
	}
	.footer-col ul li { margin-bottom: 10px; }
	.footer-col ul a {
		font-size: 14px;
		color: #535353;
		transition: color .3s;
	}
	.footer-col ul a:hover { color: #fff; }
	.footer-bottom {
		border-top: 1px solid #2a2a2a;
		padding-top: 24px;
		text-align: center;
		font-size: 13px;
		color: #666;
		letter-spacing: 0.5px;
	}