/*
Theme Name: 花朝文旅 Huazhao Festival
Theme URI: https://example.com/huazhao-festival
Author: 花朝文旅
Description: 文旅节庆策划执行公司专用 WordPress 主题。黛青×暖橙国潮风：山云纹、灯组插画、朱砂印章。灯会庙会/主题市集/音乐节/乡村振兴节庆获客站。
Version: 1.0.0
Requires at least: 5.9
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: huazhao-festival
Tags: business, one-column, custom-logo, custom-menu
*/

/* ==========================================================
   0. 设计令牌
   ========================================================== */
:root {
	--hz-teal-deep: #0d3133;   /* 夜黛 */
	--hz-teal: #123f41;        /* 黛青主色 */
	--hz-teal-soft: #1d5257;   /* 黛青亮 */
	--hz-teal-mist: #2c6b70;   /* 云青 */
	--hz-orange: #f08c2e;      /* 暖橙 */
	--hz-vermilion: #e2582a;   /* 朱橙 */
	--hz-gold: #f2b544;        /* 灯黄 */
	--hz-seal: #c0392b;        /* 印章朱砂 */
	--hz-cream: #f5e6c4;       /* 米白 */
	--hz-paper: #faf3e3;       /* 纸底 */
	--hz-paper-deep: #f1e5cb;  /* 纸底深 */
	--hz-ink-strong: #1c2f2d;
	--hz-text: #33443f;
	--hz-text-dim: #5f6f66;
	--hz-line: #e0d2b2;
	--hz-radius: 14px;
	--hz-radius-lg: 20px;
	--hz-shadow: 0 10px 30px rgba(18, 63, 65, 0.10);
	--hz-shadow-lg: 0 18px 48px rgba(13, 49, 51, 0.18);
	--hz-font: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Source Han Sans SC", "Noto Sans CJK SC", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--hz-font-display: "Songti SC", "Noto Serif CJK SC", "Source Han Serif SC", "STSong", "SimSun", serif;
}

/* ==========================================================
   1. 基础
   ========================================================== */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--hz-font);
	font-size: 16px;
	line-height: 1.75;
	color: var(--hz-text);
	background: var(--hz-paper);
	overflow-wrap: anywhere;
}

body.hz-nav-locked {
	overflow: hidden;
}

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

svg {
	display: block;
	max-width: 100%;
}

a {
	color: var(--hz-teal);
	text-decoration: none;
	transition: color 0.18s ease;
}

a:hover {
	color: var(--hz-vermilion);
}

h1, h2, h3, h4, h5, h6 {
	margin: 0 0 0.5em;
	line-height: 1.3;
	color: var(--hz-ink-strong);
	font-weight: 700;
}

p {
	margin: 0 0 1em;
}

ul, ol {
	margin: 0 0 1em;
	padding-left: 1.4em;
}

button {
	font-family: inherit;
	cursor: pointer;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
	border: 0;
}

.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 200;
	padding: 10px 16px;
	background: var(--hz-teal);
	color: #fff;
}

.skip-link:focus {
	left: 12px;
	top: 12px;
	color: #fff;
}

.hz-container {
	width: min(1160px, calc(100% - 40px));
	margin-inline: auto;
}

.hz-ic {
	flex: 0 0 auto;
}

/* ==========================================================
   2. 按钮
   ========================================================== */
.hz-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 13px 26px;
	border-radius: 999px;
	border: 2px solid transparent;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.2;
	transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease, color 0.16s ease, border-color 0.16s ease;
}

.hz-btn:hover {
	transform: translateY(-2px);
}

.hz-btn-orange {
	background: linear-gradient(135deg, var(--hz-orange), var(--hz-vermilion));
	color: #fff;
	box-shadow: 0 8px 22px rgba(226, 88, 42, 0.35);
}

.hz-btn-orange:hover {
	color: #fff;
	box-shadow: 0 12px 28px rgba(226, 88, 42, 0.45);
}

.hz-btn-ghost {
	border-color: rgba(245, 230, 196, 0.55);
	color: var(--hz-cream);
	background: rgba(245, 230, 196, 0.06);
}

.hz-btn-ghost:hover {
	border-color: var(--hz-gold);
	color: var(--hz-gold);
}

.hz-btn-line {
	border-color: var(--hz-teal);
	color: var(--hz-teal);
	background: transparent;
}

.hz-btn-line:hover {
	background: var(--hz-teal);
	color: #fff;
}

.hz-btn-cream {
	background: var(--hz-cream);
	color: var(--hz-teal-deep);
	box-shadow: 0 8px 22px rgba(13, 49, 51, 0.25);
}

.hz-btn-cream:hover {
	color: var(--hz-vermilion);
}

.hz-btn-sm {
	padding: 9px 18px;
	font-size: 14px;
}

.hz-btn-lg {
	padding: 16px 34px;
	font-size: 17px;
}

/* ==========================================================
   3. 页头
   ========================================================== */
.hz-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--hz-teal-deep);
	border-bottom: 1px solid rgba(245, 230, 196, 0.14);
}

.hz-header.is-stuck {
	box-shadow: 0 8px 28px rgba(9, 34, 36, 0.45);
}

.hz-header-in {
	display: flex;
	align-items: center;
	gap: 22px;
	min-height: 72px;
}

.hz-brand {
	flex: 0 0 auto;
}

.hz-logo {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.hz-logo-mark {
	display: inline-flex;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(192, 57, 43, 0.4);
}

.hz-logo-text {
	font-family: var(--hz-font-display);
	font-size: 22px;
	font-weight: 700;
	letter-spacing: 0.06em;
	color: var(--hz-cream);
}

.hz-logo:hover .hz-logo-text {
	color: var(--hz-gold);
}

.custom-logo-link {
	display: inline-flex;
	align-items: center;
}

.custom-logo {
	max-height: 52px;
	width: auto;
}

.hz-nav {
	margin-left: auto;
}

.hz-menu {
	display: flex;
	align-items: center;
	gap: 4px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.hz-menu a {
	display: inline-block;
	padding: 8px 13px;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 600;
	color: rgba(245, 230, 196, 0.88);
}

.hz-menu a:hover {
	color: var(--hz-gold);
	background: rgba(245, 230, 196, 0.08);
}

.hz-header-cta {
	flex: 0 0 auto;
}

.hz-nav-toggle {
	display: none;
	margin-left: auto;
	padding: 10px;
	background: transparent;
	border: 0;
}

.hz-nav-toggle-box {
	display: flex;
	flex-direction: column;
	gap: 5px;
	width: 24px;
}

.hz-nav-toggle-box i {
	height: 2.5px;
	border-radius: 2px;
	background: var(--hz-cream);
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.hz-nav-toggle[aria-expanded="true"] .hz-nav-toggle-box i:nth-child(1) {
	transform: translateY(7.5px) rotate(45deg);
}

.hz-nav-toggle[aria-expanded="true"] .hz-nav-toggle-box i:nth-child(2) {
	opacity: 0;
}

.hz-nav-toggle[aria-expanded="true"] .hz-nav-toggle-box i:nth-child(3) {
	transform: translateY(-7.5px) rotate(-45deg);
}

/* ==========================================================
   4. 首屏
   ========================================================== */
.hz-hero {
	position: relative;
	background:
		radial-gradient(1000px 420px at 82% -10%, rgba(242, 181, 68, 0.14), transparent 60%),
		radial-gradient(700px 380px at 8% 110%, rgba(226, 88, 42, 0.12), transparent 60%),
		linear-gradient(168deg, var(--hz-teal-deep) 0%, var(--hz-teal) 62%, #0f393b 100%);
	color: var(--hz-cream);
	overflow: hidden;
}

.hz-hero-clouds {
	position: absolute;
	inset: auto 0 0 0;
	opacity: 0.55;
	pointer-events: none;
}

.hz-hero-clouds svg {
	width: 100%;
	height: 120px;
}

.hz-hero-grid {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	gap: 48px;
	align-items: center;
	padding: 84px 0 96px;
}

.hz-hero-kicker {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 18px;
	padding: 8px 16px;
	border: 1px solid rgba(242, 181, 68, 0.4);
	border-radius: 999px;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.12em;
	color: var(--hz-gold);
	background: rgba(242, 181, 68, 0.08);
}

.hz-kicker-seal {
	width: 10px;
	height: 10px;
	border-radius: 2px;
	background: var(--hz-seal);
	box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.25);
}

.hz-hero-title {
	margin: 0 0 20px;
	font-family: var(--hz-font-display);
	font-size: clamp(2.1rem, 4.4vw, 3.3rem);
	font-weight: 800;
	line-height: 1.22;
	letter-spacing: 0.02em;
	color: #fff;
}

.hz-hero-title em {
	font-style: normal;
	color: var(--hz-gold);
	position: relative;
}

.hz-hero-title em::after {
	content: "";
	position: absolute;
	left: 2px;
	right: 2px;
	bottom: 4px;
	height: 10px;
	background: linear-gradient(90deg, rgba(226, 88, 42, 0.55), rgba(242, 181, 68, 0.35));
	z-index: -1;
	border-radius: 4px;
}

.hz-hero-sub {
	margin: 0 0 22px;
	max-width: 560px;
	font-size: 17px;
	color: rgba(245, 230, 196, 0.85);
}

.hz-hero-points {
	margin: 0 0 28px;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 10px;
}

.hz-hero-points li {
	position: relative;
	padding-left: 26px;
	font-size: 15px;
	color: rgba(245, 230, 196, 0.92);
}

.hz-hero-points li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 7px;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background:
		radial-gradient(circle at 50% 40%, var(--hz-gold) 0 4px, transparent 5px),
		radial-gradient(circle, rgba(242, 181, 68, 0.35), transparent 70%);
	border: 1.5px solid rgba(242, 181, 68, 0.7);
}

.hz-hero-cta {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-bottom: 20px;
}

.hz-hero-note {
	margin: 0;
	font-size: 13.5px;
	color: rgba(245, 230, 196, 0.6);
}

.hz-hero-note a {
	color: var(--hz-gold);
	font-weight: 700;
}

.hz-hero-art svg {
	width: 100%;
	height: auto;
	filter: drop-shadow(0 24px 48px rgba(6, 26, 28, 0.5));
}

/* ==========================================================
   5. 数字条
   ========================================================== */
.hz-stats {
	background: var(--hz-teal-deep);
	border-top: 1px solid rgba(245, 230, 196, 0.12);
	padding: 30px 0;
}

.hz-stats-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.hz-stat {
	text-align: center;
	padding: 6px 10px;
	border-left: 1px solid rgba(245, 230, 196, 0.14);
}

.hz-stat:first-child {
	border-left: 0;
}

.hz-stat-num {
	margin: 0 0 2px;
	font-family: var(--hz-font-display);
	font-size: clamp(1.8rem, 3.4vw, 2.5rem);
	font-weight: 800;
	color: var(--hz-gold);
	line-height: 1.1;
}

.hz-stat-num span {
	font-size: 0.55em;
	margin-left: 2px;
}

.hz-stat-label {
	margin: 0;
	font-size: 13.5px;
	letter-spacing: 0.08em;
	color: rgba(245, 230, 196, 0.7);
}

/* ==========================================================
   6. 通用板块
   ========================================================== */
.hz-section {
	padding: 84px 0;
}

.hz-section-cream {
	background:
		radial-gradient(700px 300px at 100% 0%, rgba(240, 140, 46, 0.07), transparent 60%),
		var(--hz-paper-deep);
}

.hz-section-deep {
	background:
		radial-gradient(900px 400px at 0% 0%, rgba(242, 181, 68, 0.10), transparent 55%),
		linear-gradient(160deg, var(--hz-teal-deep), var(--hz-teal));
}

.hz-section-head {
	max-width: 720px;
	margin: 0 auto 48px;
	text-align: center;
}

.hz-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 12px;
	font-size: 13.5px;
	font-weight: 700;
	letter-spacing: 0.22em;
	color: var(--hz-vermilion);
}

.hz-eyebrow::before,
.hz-eyebrow::after {
	content: "";
	width: 26px;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--hz-vermilion));
	border-radius: 2px;
}

.hz-eyebrow::after {
	background: linear-gradient(90deg, var(--hz-vermilion), transparent);
}

.hz-eyebrow-light {
	color: var(--hz-gold);
}

.hz-eyebrow-light::before {
	background: linear-gradient(90deg, transparent, var(--hz-gold));
}

.hz-eyebrow-light::after {
	background: linear-gradient(90deg, var(--hz-gold), transparent);
}

.hz-section-title {
	margin: 0 0 14px;
	font-family: var(--hz-font-display);
	font-size: clamp(1.7rem, 3.2vw, 2.4rem);
	font-weight: 800;
	letter-spacing: 0.02em;
}

.hz-title-light {
	color: #fff;
}

.hz-section-sub {
	margin: 0;
	font-size: 16px;
	color: var(--hz-text-dim);
}

.hz-sub-light {
	color: rgba(245, 230, 196, 0.72);
}

/* ==========================================================
   7. 节庆类型
   ========================================================== */
.hz-services-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.hz-service-card {
	position: relative;
	padding: 30px 26px 26px;
	background: #fffdf6;
	border: 1px solid var(--hz-line);
	border-radius: var(--hz-radius-lg);
	box-shadow: var(--hz-shadow);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
	overflow: hidden;
}

.hz-service-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 26px;
	right: 26px;
	height: 3px;
	border-radius: 0 0 4px 4px;
	background: linear-gradient(90deg, var(--hz-vermilion), var(--hz-gold));
	opacity: 0;
	transition: opacity 0.2s ease;
}

.hz-service-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--hz-shadow-lg);
	border-color: rgba(240, 140, 46, 0.5);
}

.hz-service-card:hover::before {
	opacity: 1;
}

.hz-service-icon {
	width: 62px;
	height: 62px;
	margin-bottom: 18px;
	padding: 10px;
	border-radius: 16px;
	background:
		radial-gradient(circle at 30% 25%, rgba(242, 181, 68, 0.25), transparent 65%),
		var(--hz-paper-deep);
	border: 1px solid var(--hz-line);
}

.hz-service-icon svg {
	width: 100%;
	height: 100%;
}

.hz-service-title {
	margin: 0 0 10px;
	font-family: var(--hz-font-display);
	font-size: 20px;
	letter-spacing: 0.04em;
}

.hz-service-desc {
	margin: 0 0 14px;
	font-size: 14.5px;
	color: var(--hz-text-dim);
}

.hz-service-list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 7px;
}

.hz-service-list li {
	position: relative;
	padding-left: 20px;
	font-size: 13.5px;
	color: var(--hz-text);
}

.hz-service-list li::before {
	content: "";
	position: absolute;
	left: 2px;
	top: 8px;
	width: 8px;
	height: 8px;
	border-radius: 2px;
	background: var(--hz-seal);
	transform: rotate(45deg);
	opacity: 0.75;
}

/* ==========================================================
   8. 节会案例
   ========================================================== */
.hz-cases-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.hz-case-card {
	display: flex;
	flex-direction: column;
	background: rgba(245, 230, 196, 0.05);
	border: 1px solid rgba(245, 230, 196, 0.16);
	border-radius: var(--hz-radius-lg);
	overflow: hidden;
	transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.hz-case-card:hover {
	transform: translateY(-5px);
	border-color: rgba(242, 181, 68, 0.5);
	background: rgba(245, 230, 196, 0.08);
}

.hz-case-visual svg {
	width: 100%;
	height: auto;
}

.hz-case-body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 22px 22px 24px;
}

.hz-case-tag {
	margin: 0 0 8px;
	font-size: 12.5px;
	font-weight: 700;
	letter-spacing: 0.14em;
	color: var(--hz-gold);
}

.hz-case-title {
	margin: 0 0 10px;
	font-family: var(--hz-font-display);
	font-size: 19px;
	color: #fff;
	letter-spacing: 0.03em;
}

.hz-case-desc {
	margin: 0 0 16px;
	font-size: 14px;
	line-height: 1.7;
	color: rgba(245, 230, 196, 0.75);
}

.hz-case-metrics {
	margin: auto 0 0;
	padding: 14px 0 0;
	list-style: none;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 8px;
	border-top: 1px dashed rgba(245, 230, 196, 0.25);
}

.hz-case-metrics li {
	text-align: center;
	font-size: 12px;
	color: rgba(245, 230, 196, 0.65);
	display: grid;
	gap: 2px;
}

.hz-case-metrics strong {
	font-family: var(--hz-font-display);
	font-size: 19px;
	color: var(--hz-gold);
}

.hz-cases-more {
	margin: 36px 0 0;
	text-align: center;
	font-size: 15px;
	color: rgba(245, 230, 196, 0.75);
}

.hz-cases-more a {
	color: var(--hz-gold);
	font-weight: 700;
	border-bottom: 1px dashed rgba(242, 181, 68, 0.6);
}

.hz-cases-more a:hover {
	color: #fff;
}

/* ==========================================================
   9. 政企服务条
   ========================================================== */
.hz-gov {
	background:
		linear-gradient(rgba(192, 57, 43, 0.955), rgba(178, 47, 34, 0.96)),
		repeating-linear-gradient(45deg, rgba(245, 230, 196, 0.16) 0 2px, transparent 2px 14px);
	color: var(--hz-cream);
	padding: 64px 0;
}

.hz-gov-head {
	text-align: center;
	max-width: 680px;
	margin: 0 auto 40px;
}

.hz-gov-title {
	margin: 0 0 10px;
	font-family: var(--hz-font-display);
	font-size: clamp(1.5rem, 2.8vw, 2rem);
	color: #fff;
	letter-spacing: 0.03em;
}

.hz-gov-sub {
	margin: 0;
	font-size: 15px;
	color: rgba(245, 230, 196, 0.85);
}

.hz-gov-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
}

.hz-gov-item {
	padding: 22px 20px;
	background: rgba(122, 26, 17, 0.35);
	border: 1px solid rgba(245, 230, 196, 0.28);
	border-radius: var(--hz-radius);
}

.hz-gov-num {
	display: inline-grid;
	place-items: center;
	width: 40px;
	height: 40px;
	margin-bottom: 12px;
	border: 1.5px solid rgba(245, 230, 196, 0.65);
	border-radius: 8px;
	font-family: var(--hz-font-display);
	font-size: 18px;
	font-weight: 800;
	color: var(--hz-cream);
}

.hz-gov-item h3 {
	margin: 0 0 8px;
	font-size: 17px;
	color: #fff;
}

.hz-gov-item p {
	margin: 0;
	font-size: 13.5px;
	line-height: 1.7;
	color: rgba(245, 230, 196, 0.82);
}

/* ==========================================================
   10. 流程
   ========================================================== */
.hz-process {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 18px;
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: hz-step;
}

.hz-step {
	position: relative;
	padding: 24px 18px 20px;
	background: #fffdf6;
	border: 1px solid var(--hz-line);
	border-radius: var(--hz-radius);
	box-shadow: var(--hz-shadow);
}

.hz-step::after {
	content: "";
	position: absolute;
	top: 50%;
	right: -14px;
	width: 10px;
	height: 10px;
	border-top: 2.5px solid var(--hz-orange);
	border-right: 2.5px solid var(--hz-orange);
	transform: translateY(-50%) rotate(45deg);
}

.hz-step:last-child::after {
	display: none;
}

.hz-step-no {
	display: inline-block;
	margin-bottom: 10px;
	font-family: var(--hz-font-display);
	font-size: 26px;
	font-weight: 800;
	color: transparent;
	-webkit-text-stroke: 1.4px var(--hz-vermilion);
}

.hz-step-title {
	margin: 0 0 8px;
	font-size: 16.5px;
}

.hz-step p {
	margin: 0;
	font-size: 13px;
	line-height: 1.7;
	color: var(--hz-text-dim);
}

/* ==========================================================
   11. 项目规模
   ========================================================== */
.hz-plans-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
	align-items: stretch;
}

.hz-plan {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: 32px 28px;
	background: #fffdf6;
	border: 1.5px solid var(--hz-line);
	border-radius: var(--hz-radius-lg);
	box-shadow: var(--hz-shadow);
}

.hz-plan-featured {
	border-color: var(--hz-orange);
	background:
		radial-gradient(400px 200px at 80% 0%, rgba(242, 181, 68, 0.16), transparent 60%),
		#fffdf6;
	box-shadow: var(--hz-shadow-lg);
}

.hz-plan-badge {
	position: absolute;
	top: -14px;
	left: 50%;
	transform: translateX(-50%);
	margin: 0;
	padding: 5px 16px;
	background: linear-gradient(135deg, var(--hz-orange), var(--hz-vermilion));
	color: #fff;
	font-size: 12.5px;
	font-weight: 700;
	letter-spacing: 0.1em;
	border-radius: 999px;
	white-space: nowrap;
	box-shadow: 0 6px 16px rgba(226, 88, 42, 0.4);
}

.hz-plan-name {
	margin: 0 0 6px;
	font-family: var(--hz-font-display);
	font-size: 21px;
	letter-spacing: 0.05em;
}

.hz-plan-price {
	margin: 0 0 6px;
	font-size: 14px;
	color: var(--hz-text-dim);
}

.hz-plan-price span {
	font-family: var(--hz-font-display);
	font-size: 34px;
	font-weight: 800;
	color: var(--hz-vermilion);
	margin-right: 4px;
}

.hz-plan-for {
	margin: 0 0 18px;
	padding-bottom: 16px;
	font-size: 13px;
	color: var(--hz-text-dim);
	border-bottom: 1px dashed var(--hz-line);
}

.hz-plan-list {
	margin: 0 0 24px;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 10px;
	flex: 1;
}

.hz-plan-list li {
	position: relative;
	padding-left: 24px;
	font-size: 14px;
}

.hz-plan-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 5px;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: radial-gradient(circle at 35% 30%, var(--hz-gold), var(--hz-orange));
	box-shadow: inset 0 -2px 3px rgba(178, 60, 28, 0.5);
}

.hz-plan .hz-btn {
	width: 100%;
}

.hz-plans-note {
	margin: 26px 0 0;
	text-align: center;
	font-size: 13px;
	color: var(--hz-text-dim);
}

/* ==========================================================
   12. 口碑
   ========================================================== */
.hz-voices-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.hz-voice {
	margin: 0;
	padding: 28px 26px 24px;
	background: #fffdf6;
	border: 1px solid var(--hz-line);
	border-radius: var(--hz-radius-lg);
	box-shadow: var(--hz-shadow);
	position: relative;
}

.hz-voice::before {
	content: "";
	position: absolute;
	top: 20px;
	right: 22px;
	width: 34px;
	height: 34px;
	border-radius: 6px;
	background: var(--hz-seal);
	opacity: 0.12;
	transform: rotate(8deg);
}

.hz-voice p {
	margin: 0 0 18px;
	font-size: 15px;
	line-height: 1.85;
	color: var(--hz-ink-strong);
}

.hz-voice footer {
	display: grid;
	gap: 2px;
	padding-top: 14px;
	border-top: 1px dashed var(--hz-line);
}

.hz-voice strong {
	font-size: 14.5px;
	color: var(--hz-teal);
}

.hz-voice span {
	font-size: 12.5px;
	color: var(--hz-text-dim);
}

/* ==========================================================
   13. FAQ
   ========================================================== */
.hz-faq-wrap {
	max-width: 860px;
}

.hz-faq-list {
	display: grid;
	gap: 14px;
}

.hz-faq {
	background: #fffdf6;
	border: 1px solid var(--hz-line);
	border-radius: var(--hz-radius);
	overflow: hidden;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.hz-faq[open] {
	border-color: rgba(240, 140, 46, 0.55);
	box-shadow: var(--hz-shadow);
}

.hz-faq summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 18px 22px;
	font-size: 16px;
	font-weight: 700;
	color: var(--hz-ink-strong);
	cursor: pointer;
	list-style: none;
}

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

.hz-faq summary:hover {
	color: var(--hz-vermilion);
}

.hz-faq-mark {
	position: relative;
	flex: 0 0 auto;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	border: 1.5px solid var(--hz-orange);
}

.hz-faq-mark::before,
.hz-faq-mark::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 11px;
	height: 2px;
	background: var(--hz-orange);
	transform: translate(-50%, -50%);
	transition: transform 0.2s ease;
}

.hz-faq-mark::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.hz-faq[open] .hz-faq-mark::after {
	transform: translate(-50%, -50%) rotate(0deg);
}

.hz-faq-body {
	padding: 0 22px 20px;
}

.hz-faq-body p {
	margin: 0;
	font-size: 14.5px;
	line-height: 1.85;
	color: var(--hz-text-dim);
}

/* ==========================================================
   14. 动态卡片
   ========================================================== */
.hz-news-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.hz-post-card {
	background: #fffdf6;
	border: 1px solid var(--hz-line);
	border-radius: var(--hz-radius-lg);
	overflow: hidden;
	box-shadow: var(--hz-shadow);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hz-post-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--hz-shadow-lg);
}

.hz-post-card-link {
	display: flex;
	flex-direction: column;
	height: 100%;
	color: inherit;
}

.hz-post-thumb {
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--hz-teal);
}

.hz-post-thumb img,
.hz-post-thumb svg {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hz-post-card-body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 20px 22px 22px;
}

.hz-post-date {
	margin: 0 0 6px;
	font-size: 12.5px;
	letter-spacing: 0.08em;
	color: var(--hz-text-dim);
}

.hz-post-card-title {
	margin: 0 0 10px;
	font-size: 17.5px;
	line-height: 1.45;
	color: var(--hz-ink-strong);
}

.hz-post-card-link:hover .hz-post-card-title {
	color: var(--hz-vermilion);
}

.hz-post-card-excerpt {
	margin: 0 0 14px;
	font-size: 13.5px;
	line-height: 1.7;
	color: var(--hz-text-dim);
}

.hz-post-more {
	margin-top: auto;
	font-size: 13.5px;
	font-weight: 700;
	color: var(--hz-orange);
}

/* ==========================================================
   15. CTA
   ========================================================== */
.hz-cta {
	position: relative;
	background:
		radial-gradient(800px 340px at 50% 120%, rgba(226, 88, 42, 0.28), transparent 65%),
		linear-gradient(165deg, var(--hz-teal-deep), var(--hz-teal) 70%);
	color: var(--hz-cream);
	padding: 0 0 84px;
	overflow: hidden;
}

.hz-cta-lanterns {
	margin-bottom: 40px;
	opacity: 0.9;
}

.hz-cta-lanterns svg {
	width: 100%;
	height: 90px;
}

.hz-cta-in {
	text-align: center;
	max-width: 720px;
}

.hz-cta-title {
	margin: 0 0 14px;
	font-family: var(--hz-font-display);
	font-size: clamp(1.9rem, 3.6vw, 2.7rem);
	color: #fff;
	letter-spacing: 0.04em;
}

.hz-cta-sub {
	margin: 0 0 30px;
	font-size: 16px;
	color: rgba(245, 230, 196, 0.8);
}

.hz-cta-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 16px;
	margin-bottom: 22px;
}

.hz-cta-meta {
	margin: 0;
	font-size: 13.5px;
	color: rgba(245, 230, 196, 0.55);
}

/* ==========================================================
   16. 页脚
   ========================================================== */
.hz-footer {
	background: var(--hz-teal-deep);
	color: rgba(245, 230, 196, 0.78);
}

.hz-footer-wave {
	background: var(--hz-teal);
}

.hz-footer-wave svg {
	width: 100%;
	height: 50px;
}

.hz-footer-body {
	background: #0b2e30;
	padding: 24px 0 28px;
}

.hz-footer-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
	gap: 36px;
	padding-bottom: 32px;
	border-bottom: 1px solid rgba(245, 230, 196, 0.12);
}

.hz-footer-logo {
	margin: 0 0 12px;
	font-family: var(--hz-font-display);
	font-size: 21px;
	font-weight: 800;
	color: var(--hz-cream);
	letter-spacing: 0.06em;
}

.hz-footer-blurb {
	margin: 0 0 16px;
	font-size: 13.5px;
	line-height: 1.8;
}

.hz-footer-contact {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 6px;
	font-size: 13.5px;
}

.hz-footer-contact a {
	color: var(--hz-gold);
	font-weight: 700;
}

.hz-footer-title {
	margin: 0 0 14px;
	font-size: 15px;
	color: var(--hz-cream);
	letter-spacing: 0.08em;
}

.hz-footer-links {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 9px;
}

.hz-footer-links a {
	font-size: 13.5px;
	color: rgba(245, 230, 196, 0.68);
}

.hz-footer-links a:hover {
	color: var(--hz-gold);
}

.hz-footer-legal {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 8px;
	padding-top: 18px;
	font-size: 12.5px;
	color: rgba(245, 230, 196, 0.45);
}

.hz-footer-legal p {
	margin: 0;
}

.hz-footer-legal a {
	color: inherit;
}

.hz-footer-legal a:hover {
	color: var(--hz-gold);
}

/* ==========================================================
   17. 移动咨询条 / Toast
   ========================================================== */
.hz-mobilebar {
	display: none;
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 120;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	box-shadow: 0 -6px 24px rgba(9, 34, 36, 0.3);
}

.hz-mobilebar-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 15px 10px;
	font-size: 15px;
	font-weight: 700;
	border: 0;
}

.hz-mobilebar-tel {
	background: linear-gradient(135deg, var(--hz-orange), var(--hz-vermilion));
	color: #fff;
}

.hz-mobilebar-tel:hover {
	color: #fff;
}

.hz-mobilebar-wx {
	background: var(--hz-teal-deep);
	color: var(--hz-cream);
}

.hz-toast {
	position: fixed;
	left: 50%;
	bottom: 92px;
	z-index: 150;
	transform: translateX(-50%) translateY(8px);
	padding: 12px 22px;
	background: var(--hz-ink-strong);
	color: #fff;
	font-size: 14px;
	border-radius: 999px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
	opacity: 0;
	transition: opacity 0.2s ease, transform 0.2s ease;
	max-width: calc(100vw - 40px);
	text-align: center;
}

.hz-toast.is-show {
	opacity: 1;
	transform: translateX(-50%) translateY(0);
}

/* ==========================================================
   18. 归档 / 文章页
   ========================================================== */
.hz-archive {
	padding: 64px 0 84px;
}

.hz-archive-head {
	max-width: 720px;
	margin: 0 0 40px;
}

.hz-archive-title {
	margin: 0 0 10px;
	font-family: var(--hz-font-display);
	font-size: clamp(1.7rem, 3.4vw, 2.4rem);
}

.hz-archive-sub {
	margin: 0;
	color: var(--hz-text-dim);
	font-size: 15px;
}

.hz-pagination {
	margin-top: 44px;
}

.hz-pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
}

.hz-pagination .page-numbers {
	display: inline-grid;
	place-items: center;
	min-width: 42px;
	padding: 9px 14px;
	border: 1.5px solid var(--hz-line);
	border-radius: 10px;
	background: #fffdf6;
	font-size: 14px;
	font-weight: 600;
	color: var(--hz-text);
}

.hz-pagination .page-numbers.current {
	background: var(--hz-teal);
	border-color: var(--hz-teal);
	color: #fff;
}

.hz-pagination .page-numbers:hover:not(.current) {
	border-color: var(--hz-orange);
	color: var(--hz-vermilion);
}

.hz-empty {
	padding: 48px 0;
	max-width: 560px;
}

.hz-empty p {
	font-size: 16px;
}

/* 文章头部 */
.hz-article-head {
	background:
		radial-gradient(700px 280px at 90% -20%, rgba(242, 181, 68, 0.16), transparent 60%),
		linear-gradient(160deg, var(--hz-teal-deep), var(--hz-teal));
	padding: 64px 0 56px;
}

.hz-article-head-in {
	max-width: 820px;
}

.hz-article-meta {
	margin: 0 0 12px;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	font-size: 13.5px;
	color: rgba(245, 230, 196, 0.65);
}

.hz-article-meta a {
	color: var(--hz-gold);
	font-weight: 700;
}

.hz-article-title {
	margin: 0;
	font-family: var(--hz-font-display);
	font-size: clamp(1.6rem, 3.4vw, 2.4rem);
	color: #fff;
	letter-spacing: 0.02em;
}

.hz-article-layout {
	max-width: 820px;
	padding: 48px 0 84px;
}

.hz-article-thumb {
	margin: 0 0 32px;
	border-radius: var(--hz-radius-lg);
	overflow: hidden;
	box-shadow: var(--hz-shadow);
}

/* 正文排版（wlq 兼容） */
.hz-prose {
	font-size: 16.5px;
	line-height: 1.9;
	color: var(--hz-text);
}

.hz-prose > * {
	margin-top: 0;
}

.hz-prose h2 {
	margin: 2em 0 0.7em;
	padding-left: 14px;
	border-left: 4px solid var(--hz-vermilion);
	font-family: var(--hz-font-display);
	font-size: 1.45em;
	letter-spacing: 0.03em;
}

.hz-prose h3 {
	margin: 1.6em 0 0.6em;
	font-size: 1.2em;
}

.hz-prose h4 {
	margin: 1.4em 0 0.5em;
	font-size: 1.05em;
	color: var(--hz-teal);
}

.hz-prose p {
	margin: 0 0 1.2em;
}

.hz-prose ul,
.hz-prose ol {
	margin: 0 0 1.2em;
	padding-left: 1.5em;
}

.hz-prose li {
	margin-bottom: 0.4em;
}

.hz-prose blockquote {
	margin: 1.6em 0;
	padding: 18px 22px;
	background: var(--hz-paper-deep);
	border-left: 4px solid var(--hz-orange);
	border-radius: 0 var(--hz-radius) var(--hz-radius) 0;
	color: var(--hz-ink-strong);
}

.hz-prose blockquote p:last-child {
	margin-bottom: 0;
}

.hz-prose img {
	border-radius: var(--hz-radius);
	margin: 1.4em auto;
}

.hz-prose table {
	width: 100%;
	margin: 1.6em 0;
	border-collapse: collapse;
	font-size: 14.5px;
}

.hz-prose th,
.hz-prose td {
	padding: 11px 14px;
	border: 1px solid var(--hz-line);
	text-align: left;
	vertical-align: top;
}

.hz-prose th {
	background: var(--hz-paper-deep);
	color: var(--hz-ink-strong);
	white-space: nowrap;
}

.hz-prose tr:nth-child(even) td {
	background: rgba(241, 229, 203, 0.35);
}

.hz-prose a {
	color: var(--hz-vermilion);
	border-bottom: 1px dashed rgba(226, 88, 42, 0.5);
}

.hz-prose a:hover {
	border-bottom-style: solid;
}

.hz-prose code {
	padding: 2px 7px;
	background: var(--hz-paper-deep);
	border-radius: 5px;
	font-size: 0.88em;
}

.hz-prose pre {
	padding: 18px;
	background: var(--hz-teal-deep);
	color: var(--hz-cream);
	border-radius: var(--hz-radius);
	overflow-x: auto;
	font-size: 0.88em;
	line-height: 1.7;
}

.hz-prose pre code {
	background: none;
	padding: 0;
}

.hz-prose hr {
	margin: 2em auto;
	width: 120px;
	border: 0;
	border-top: 2px dashed var(--hz-line);
}

.hz-article-cta {
	margin: 40px 0;
	padding: 30px 28px;
	background:
		radial-gradient(400px 180px at 90% 0%, rgba(242, 181, 68, 0.2), transparent 60%),
		linear-gradient(150deg, var(--hz-teal-deep), var(--hz-teal));
	border-radius: var(--hz-radius-lg);
	color: var(--hz-cream);
}

.hz-article-cta h2 {
	margin: 0 0 8px;
	font-family: var(--hz-font-display);
	font-size: 21px;
	color: #fff;
}

.hz-article-cta p {
	margin: 0 0 18px;
	font-size: 14.5px;
	color: rgba(245, 230, 196, 0.8);
}

.hz-article-cta-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.hz-article-cta .hz-btn-line {
	border-color: rgba(245, 230, 196, 0.5);
	color: var(--hz-cream);
}

.hz-article-cta .hz-btn-line:hover {
	background: rgba(245, 230, 196, 0.12);
	color: #fff;
}

.hz-postnav {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	margin: 36px 0 0;
	padding-top: 24px;
	border-top: 1px solid var(--hz-line);
	font-size: 14px;
}

.hz-postnav-next {
	text-align: right;
}

.hz-postnav a {
	font-weight: 600;
}

/* ==========================================================
   19. 404 / 搜索
   ========================================================== */
.hz-404 {
	padding: 84px 0;
}

.hz-404-in {
	max-width: 560px;
	text-align: center;
}

.hz-404-art {
	max-width: 300px;
	margin: 0 auto 20px;
	border-radius: var(--hz-radius-lg);
	overflow: hidden;
	background: var(--hz-teal-deep);
	box-shadow: var(--hz-shadow-lg);
}

.hz-404-code {
	margin: 0 0 4px;
	font-family: var(--hz-font-display);
	font-size: 64px;
	font-weight: 800;
	line-height: 1;
	color: transparent;
	-webkit-text-stroke: 2px var(--hz-vermilion);
}

.hz-404-title {
	margin: 0 0 10px;
	font-family: var(--hz-font-display);
	font-size: 26px;
}

.hz-404-sub {
	margin: 0 0 24px;
	color: var(--hz-text-dim);
}

.hz-404-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 14px;
	margin-bottom: 28px;
}

.hz-search {
	display: flex;
	gap: 10px;
	max-width: 460px;
	margin-inline: auto;
}

.hz-search-input {
	flex: 1;
	min-width: 0;
	padding: 12px 18px;
	border: 1.5px solid var(--hz-line);
	border-radius: 999px;
	background: #fffdf6;
	font-family: inherit;
	font-size: 14.5px;
	color: var(--hz-text);
}

.hz-search-input:focus {
	outline: none;
	border-color: var(--hz-orange);
	box-shadow: 0 0 0 3px rgba(240, 140, 46, 0.18);
}

.hz-search-btn {
	display: inline-grid;
	place-items: center;
	width: 48px;
	height: 48px;
	border: 0;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--hz-orange), var(--hz-vermilion));
	color: #fff;
	flex: 0 0 auto;
}

.hz-empty .hz-search {
	margin-inline: 0;
	margin-top: 20px;
}

/* ==========================================================
   20. 响应式
   ========================================================== */
@media (max-width: 1024px) {
	.hz-services-grid,
	.hz-cases-grid,
	.hz-voices-grid,
	.hz-news-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.hz-process {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.hz-step:nth-child(3n)::after {
		display: none;
	}

	.hz-gov-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.hz-plans-grid {
		grid-template-columns: minmax(0, 1fr);
		max-width: 560px;
		margin-inline: auto;
	}

	.hz-plan-featured {
		order: -1;
	}

	.hz-footer-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 900px) {
	.hz-header-cta {
		display: none;
	}

	.hz-nav-toggle {
		display: inline-flex;
	}

	.hz-nav {
		position: fixed;
		top: 72px;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 90;
		margin: 0;
		background: rgba(11, 46, 48, 0.98);
		transform: translateX(100%);
		transition: transform 0.24s ease;
		overflow-y: auto;
	}

	.hz-nav.is-open {
		transform: translateX(0);
	}

	.hz-menu {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 18px 22px;
	}

	.hz-menu a {
		display: block;
		padding: 15px 12px;
		font-size: 17px;
		border-bottom: 1px solid rgba(245, 230, 196, 0.1);
		border-radius: 0;
	}

	.hz-hero-grid {
		grid-template-columns: minmax(0, 1fr);
		gap: 36px;
		padding: 56px 0 72px;
	}

	.hz-hero-art {
		max-width: 460px;
		margin-inline: auto;
	}
}

@media (max-width: 768px) {
	.hz-section {
		padding: 60px 0;
	}

	.hz-nav-toggle {
		margin-left: auto;
	}

	.hz-stats-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		row-gap: 22px;
	}

	.hz-stat:nth-child(3) {
		border-left: 0;
	}

	.hz-process {
		grid-template-columns: minmax(0, 1fr);
		max-width: 460px;
		margin-inline: auto;
	}

	.hz-step::after {
		display: none;
	}

	.hz-gov-grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.hz-mobilebar {
		display: grid;
	}

	body {
		padding-bottom: 54px;
	}

	.hz-footer-body {
		padding-bottom: 40px;
	}

	.hz-postnav {
		grid-template-columns: minmax(0, 1fr);
	}

	.hz-postnav-next {
		text-align: left;
	}
}

@media (max-width: 600px) {
	.hz-container {
		width: calc(100% - 32px);
	}

	.hz-hero-title {
		font-size: clamp(1.75rem, 8.4vw, 2.15rem);
	}

	.hz-services-grid,
	.hz-cases-grid,
	.hz-voices-grid,
	.hz-news-grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.hz-footer-grid {
		grid-template-columns: minmax(0, 1fr);
		gap: 26px;
	}

	.hz-hero-cta .hz-btn {
		width: 100%;
	}

	.hz-cta-actions {
		flex-direction: column;
		align-items: stretch;
	}

	.hz-article-cta-actions .hz-btn {
		width: 100%;
	}

	.hz-faq summary {
		font-size: 15px;
		padding: 16px 18px;
	}

	.hz-faq-body {
		padding: 0 18px 18px;
	}
}
