/* =====================================================
   蓉议会务 Rongyi — 主样式
   设计令牌:宣纸 / 墨 / 松柏青 / 印泥朱红 / 青灰
   字体:标题宋体系衬线 · 正文黑体系 · 编号等宽
   全部本地字体栈,无外部请求
   ===================================================== */

:root {
	/* 色 */
	--paper:      #f4f5f0;   /* 宣纸底 */
	--paper-soft: #fbfbf8;   /* 卡片纸面 */
	--tint:       #e8ede6;   /* 青灰区块 */
	--ink:        #1a2822;   /* 墨(绿黑) */
	--ink-soft:   #35463d;
	--pine:       #1f4f46;   /* 松柏青(主色) */
	--pine-deep:  #153b34;
	--seal:       #be3e23;   /* 印泥朱红(点缀) */
	--seal-soft:  #d6634a;
	--moss:       #6d7f76;   /* 苔灰(次级文字) */
	--line:       rgba(26, 40, 34, 0.16);
	--line-soft:  rgba(26, 40, 34, 0.09);

	/* 字 */
	--serif: "Noto Serif SC", "Source Han Serif SC", "Source Han Serif CN",
	         "Songti SC", "STSong", "SimSun", serif;
	--sans:  "PingFang SC", "Hiragino Sans GB", "Source Han Sans SC",
	         "Noto Sans SC", "Microsoft YaHei", "WenQuanYi Micro Hei",
	         -apple-system, "Segoe UI", sans-serif;
	--mono:  "IBM Plex Mono", "SFMono-Regular", "JetBrains Mono",
	         Consolas, "Liberation Mono", monospace;

	/* 形 */
	--r-s: 3px;
	--r-m: 8px;
	--wrap: 1180px;
	--shadow-print: 10px 10px 0 rgba(31, 79, 70, 0.10);
}

/* ---------- 重置与基底 ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font-family: var(--sans);
	font-size: 16px;
	line-height: 1.85;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

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

[id] { scroll-margin-top: 92px; }

a { color: var(--pine); text-decoration: none; }
a:hover { color: var(--seal); }

h1, h2, h3, h4 {
	font-family: var(--serif);
	font-weight: 700;
	line-height: 1.35;
	margin: 0 0 0.5em;
	color: var(--ink);
	letter-spacing: 0.01em;
}

p { margin: 0 0 1em; }

::selection { background: var(--pine); color: var(--paper); }

/* ---------- 通用容器与工具 ---------- */
.wrap {
	width: min(var(--wrap), calc(100% - 48px));
	margin-inline: auto;
}
.wrap-narrow { width: min(760px, calc(100% - 48px)); }

.section { padding-block: clamp(72px, 9vw, 128px); }
.section-tint { background: var(--tint); }
.section-ink {
	background: var(--pine-deep);
	color: rgba(244, 245, 240, 0.86);
}
.section-ink .section-title { color: var(--paper); }
.section-ink .section-desc { color: rgba(244, 245, 240, 0.72); }

.section-head { max-width: 640px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head--row {
	max-width: none;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
}
.section-title {
	font-size: clamp(26px, 3.4vw, 38px);
	margin: 10px 0 14px;
}
.section-desc { color: var(--moss); margin: 0; }
.section-ink .section-head { position: relative; }

/* 眉题:印泥短杠 + 小字,取自红头文件的题签 */
.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin: 0;
	font-size: 13px;
	letter-spacing: 0.22em;
	color: var(--ink-soft);
}
.eyebrow::before {
	content: "";
	width: 26px;
	height: 3px;
	background: var(--seal);
}
.eyebrow--light { color: rgba(244, 245, 240, 0.7); }

/* 按钮 */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 13px 26px;
	border-radius: var(--r-s);
	border: 1px solid transparent;
	font-size: 15px;
	font-family: var(--sans);
	letter-spacing: 0.06em;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease,
	            border-color 0.2s ease, transform 0.15s ease;
}
.btn:active { transform: translateY(1px); }
.btn-solid { background: var(--pine); color: var(--paper); }
.btn-solid:hover { background: var(--pine-deep); color: var(--paper); }
.btn-ghost {
	border-color: var(--ink);
	color: var(--ink);
	background: transparent;
}
.btn-ghost:hover { border-color: var(--seal); color: var(--seal); }
.section-ink .btn-ghost {
	border-color: rgba(244, 245, 240, 0.5);
	color: var(--paper);
}

/* 无障碍 */
.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: 16px; top: -48px;
	z-index: 200;
	padding: 10px 18px;
	background: var(--ink);
	color: var(--paper);
	border-radius: 0 0 var(--r-s) var(--r-s);
	transition: top 0.2s ease;
}
.skip-link:focus { top: 0; color: var(--paper); }

:focus-visible {
	outline: 2px solid var(--seal);
	outline-offset: 2px;
}

/* =====================================================
   印章组件 —— 主题签名元素
   ===================================================== */
.seal {
	display: grid;
	place-content: center;
	gap: 2px;
	width: 84px;
	height: 84px;
	border: 4px solid var(--seal);
	border-radius: 6px;
	color: var(--seal);
	font-family: var(--serif);
	font-weight: 700;
	font-size: 24px;
	line-height: 1.15;
	letter-spacing: 0.3em;
	text-indent: 0.3em;
	background:
		radial-gradient(circle at 30% 20%, rgba(190, 62, 35, 0.08), transparent 60%),
		rgba(255, 255, 255, 0.55);
	mix-blend-mode: multiply;
}
.seal span { display: block; text-align: center; }

.seal-stamp {
	position: absolute;
	right: -18px;
	bottom: -22px;
	transform: rotate(-8deg);
	box-shadow: 0 6px 18px rgba(26, 40, 34, 0.12);
}

/* 品牌小印(页头 / 页脚) */
.brand-seal {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	place-items: center;
	width: 44px;
	height: 44px;
	border: 3px solid var(--seal);
	border-radius: 4px;
	color: var(--seal);
	font-family: var(--serif);
	font-weight: 700;
	font-size: 16px;
	line-height: 1;
	background: rgba(255, 255, 255, 0.4);
	flex: none;
}
.brand-seal--light { background: transparent; }

/* =====================================================
   页头与导航
   ===================================================== */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(244, 245, 240, 0.88);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-bottom: 1px solid transparent;
	transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.site-header.is-scrolled {
	border-bottom-color: var(--line-soft);
	box-shadow: 0 4px 24px rgba(26, 40, 34, 0.06);
}
.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 78px;
}

.brand-link {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: var(--ink);
}
.brand-link:hover { color: var(--ink); }
.brand-text { display: flex; flex-direction: column; line-height: 1.3; }
.brand-name {
	font-family: var(--serif);
	font-weight: 700;
	font-size: 20px;
	letter-spacing: 0.06em;
}
.brand-tag {
	font-size: 11px;
	letter-spacing: 0.28em;
	color: var(--moss);
}
.custom-logo { max-height: 52px; width: auto; }

.site-nav {
	display: flex;
	align-items: center;
	gap: 28px;
}
.nav-menu {
	display: flex;
	align-items: center;
	gap: 4px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.nav-menu li { position: relative; }
.nav-menu a {
	display: inline-block;
	padding: 10px 14px;
	color: var(--ink-soft);
	font-size: 15px;
	letter-spacing: 0.08em;
	border-bottom: 2px solid transparent;
}
.nav-menu a:hover,
.nav-menu .current-menu-item > a,
.nav-menu .current_page_item > a {
	color: var(--ink);
	border-bottom-color: var(--seal);
}
.nav-menu .sub-menu {
	position: absolute;
	left: 0; top: 100%;
	min-width: 200px;
	margin: 0; padding: 8px 0;
	list-style: none;
	background: var(--paper-soft);
	border: 1px solid var(--line-soft);
	border-radius: var(--r-s);
	box-shadow: 0 12px 32px rgba(26, 40, 34, 0.10);
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}
.nav-menu li:hover > .sub-menu,
.nav-menu li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.nav-menu .sub-menu a {
	display: block;
	padding: 9px 18px;
	border-bottom: 0;
	font-size: 14px;
}
.nav-cta { flex: none; }

.nav-toggle {
	display: none;
	position: relative;
	width: 44px; height: 44px;
	border: 1px solid var(--line);
	border-radius: var(--r-s);
	background: transparent;
	cursor: pointer;
}
.nav-toggle-bar,
.nav-toggle-bar::before,
.nav-toggle-bar::after {
	content: "";
	position: absolute;
	left: 50%;
	width: 20px; height: 2px;
	background: var(--ink);
	transform: translateX(-50%);
	transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle-bar { top: 50%; margin-top: -1px; }
.nav-toggle-bar::before { top: -7px; }
.nav-toggle-bar::after { top: 7px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar::before {
	transform: translateX(-50%) translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar::after {
	transform: translateX(-50%) translateY(-7px) rotate(-45deg);
}

/* =====================================================
   首屏:议程卡
   ===================================================== */
.hero {
	position: relative;
	overflow: hidden;
	padding-block: clamp(64px, 8vw, 110px) clamp(56px, 7vw, 96px);
	background:
		linear-gradient(180deg, rgba(232, 237, 230, 0.6), rgba(244, 245, 240, 0) 55%),
		var(--paper);
}

/* 竖排题签(取自线装书书脊) */
.hero-vertical {
	position: absolute;
	left: clamp(10px, 2vw, 32px);
	top: 50%;
	transform: translateY(-50%);
	writing-mode: vertical-rl;
	font-family: var(--serif);
	font-size: 15px;
	letter-spacing: 0.5em;
	color: var(--moss);
	border-left: 1px solid var(--line);
	padding-left: 14px;
}
.hero-vertical::before {
	content: "";
	display: block;
	width: 3px; height: 26px;
	margin-bottom: 14px;
	background: var(--seal);
}

.hero-grid {
	display: grid;
	grid-template-columns: 1.02fr 0.98fr;
	gap: clamp(40px, 6vw, 88px);
	align-items: center;
}

.hero-title {
	font-size: clamp(34px, 5vw, 56px);
	line-height: 1.28;
	margin: 18px 0 20px;
}
.hero-desc {
	max-width: 520px;
	color: var(--ink-soft);
	margin-bottom: 30px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-notes {
	display: flex;
	gap: 10px 22px;
	flex-wrap: wrap;
	margin: 30px 0 0;
	padding: 0;
	list-style: none;
	font-size: 13px;
	color: var(--moss);
	letter-spacing: 0.05em;
}
.hero-notes li {
	display: inline-flex;
	align-items: center;
	gap: 7px;
}
.hero-notes li::before {
	content: "";
	width: 5px; height: 5px;
	background: var(--seal);
	transform: rotate(45deg);
}

/* 议程卡 */
.hero-card { position: relative; }

.agenda {
	background: var(--paper-soft);
	border: 1px solid var(--ink);
	border-radius: var(--r-m);
	padding: 26px 28px 20px;
	box-shadow: var(--shadow-print);
}
.agenda-head {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 12px;
	font-family: var(--mono);
	font-size: 12px;
	letter-spacing: 0.12em;
	color: var(--pine);
	text-transform: uppercase;
}
.agenda-conf {
	font-family: var(--serif);
	font-weight: 700;
	font-size: 19px;
	margin: 10px 0 16px;
	padding-bottom: 14px;
	border-bottom: 2px solid var(--ink);
}
.agenda-rows {
	margin: 0; padding: 0;
	list-style: none;
}
.agenda-rows li {
	display: grid;
	grid-template-columns: 58px 1fr auto;
	gap: 14px;
	align-items: baseline;
	padding: 11px 2px;
	border-bottom: 1px dashed var(--line);
	font-size: 14.5px;
}
.agenda-rows li:last-child { border-bottom: 0; }
.a-time {
	font-family: var(--mono);
	font-size: 13px;
	color: var(--ink-soft);
}
.a-item { color: var(--ink); }
.a-note {
	font-family: var(--mono);
	font-size: 11.5px;
	letter-spacing: 0.06em;
	color: var(--moss);
	display: inline-flex;
	align-items: center;
	gap: 6px;
}
.agenda-rows .is-live {
	background: linear-gradient(90deg, rgba(190, 62, 35, 0.07), transparent 70%);
	border-left: 3px solid var(--seal);
	margin-left: -2px;
	padding-left: 8px;
}
.agenda-rows .is-live .a-note { color: var(--seal); }
.live-dot {
	width: 7px; height: 7px;
	border-radius: 50%;
	background: var(--seal);
	animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
	0%, 100% { box-shadow: 0 0 0 0 rgba(190, 62, 35, 0.45); }
	60%      { box-shadow: 0 0 0 7px rgba(190, 62, 35, 0); }
}
.agenda-foot {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	margin-top: 14px;
	padding-top: 12px;
	border-top: 1px solid var(--line-soft);
	font-family: var(--mono);
	font-size: 11px;
	letter-spacing: 0.1em;
	color: var(--moss);
}

/* =====================================================
   数据条
   ===================================================== */
.stats {
	border-block: 1px solid var(--line-soft);
	background: var(--paper-soft);
}
.stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	padding-block: 34px;
}
.stat { text-align: left; }
.stat-num {
	margin: 0;
	font-family: var(--serif);
	font-size: clamp(30px, 3.6vw, 42px);
	font-weight: 700;
	line-height: 1.1;
	color: var(--ink);
	font-variant-numeric: tabular-nums;
}
.stat-num em {
	font-style: normal;
	font-size: 0.55em;
	color: var(--seal);
	margin-left: 3px;
}
.stat-label {
	margin: 6px 0 0;
	font-size: 13px;
	letter-spacing: 0.08em;
	color: var(--moss);
}

/* =====================================================
   服务体系
   ===================================================== */
.service-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}
.service-card {
	position: relative;
	background: var(--paper-soft);
	border: 1px solid var(--line-soft);
	border-radius: var(--r-m);
	padding: 30px 26px 26px;
	transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.service-card:hover {
	border-color: var(--pine);
	transform: translateY(-4px);
	box-shadow: 0 16px 32px rgba(26, 40, 34, 0.08);
}
.service-mark {
	display: grid;
	place-items: center;
	width: 46px; height: 46px;
	margin-bottom: 18px;
	border: 2.5px solid var(--seal);
	border-radius: 5px;
	color: var(--seal);
	font-family: var(--serif);
	font-weight: 700;
	font-size: 22px;
	background: rgba(255, 255, 255, 0.5);
}
.service-mark--inline {
	display: inline-grid;
	width: 40px; height: 40px;
	font-size: 19px;
	margin: 0 12px 0 0;
	vertical-align: -8px;
}
.service-title { font-size: 19px; margin-bottom: 10px; }
.service-title a { color: var(--ink); }
.service-title a:hover { color: var(--pine); }
.service-desc {
	margin: 0;
	font-size: 14.5px;
	color: var(--moss);
	line-height: 1.8;
}

/* =====================================================
   承办流程(T-minus 倒排)
   ===================================================== */
.process {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 0 26px;
	margin: 0; padding: 0;
	list-style: none;
	counter-reset: none;
}
.process-step {
	position: relative;
	padding-top: 26px;
}
/* 顶部时间轴:横线 + 结点 */
.process-step::before {
	content: "";
	position: absolute;
	top: 0; left: 0; right: -26px;
	height: 1px;
	background: var(--line);
}
.process-step:last-child::before { right: 0; }
.process-step::after {
	content: "";
	position: absolute;
	top: -4px; left: 0;
	width: 9px; height: 9px;
	border-radius: 50%;
	background: var(--paper);
	border: 2px solid var(--pine);
}
/* 会期结点以印泥红强调 */
.process-step:nth-child(4)::after {
	background: var(--seal);
	border-color: var(--seal);
}
.process-code {
	font-family: var(--mono);
	font-size: 24px;
	font-weight: 600;
	letter-spacing: 0.02em;
	color: var(--pine);
	font-variant-numeric: tabular-nums;
}
.process-code em {
	font-style: normal;
	font-size: 13px;
	margin-left: 2px;
	color: var(--moss);
}
.process-step:nth-child(4) .process-code {
	font-family: var(--serif);
	color: var(--seal);
}
.process-title { font-size: 18px; margin: 10px 0 8px; }
.process-desc {
	margin: 0;
	font-size: 14px;
	color: var(--moss);
	line-height: 1.8;
}
.section-tint .process-step::after { background: var(--tint); }
.section-tint .process-step:nth-child(4)::after { background: var(--seal); }

/* =====================================================
   会议案例
   ===================================================== */
.case-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}
.case-card {
	display: flex;
	flex-direction: column;
	background: var(--paper-soft);
	border: 1px solid var(--line-soft);
	border-radius: var(--r-m);
	padding: 26px;
	transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.case-card:hover {
	border-color: var(--pine);
	transform: translateY(-4px);
	box-shadow: 0 16px 32px rgba(26, 40, 34, 0.08);
}
.case-thumb {
	margin: -26px -26px 20px;
	border-radius: var(--r-m) var(--r-m) 0 0;
	overflow: hidden;
	border-bottom: 1px solid var(--line-soft);
}
.case-thumb img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.case-tag {
	margin: 0 0 10px;
	font-family: var(--mono);
	font-size: 11.5px;
	letter-spacing: 0.14em;
	color: var(--seal);
	text-transform: uppercase;
}
.case-title { font-size: 18px; line-height: 1.5; margin-bottom: 12px; }
.case-title a { color: var(--ink); }
.case-title a:hover { color: var(--pine); }
.case-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 14px;
	padding: 0;
	list-style: none;
}
.case-meta li {
	font-family: var(--mono);
	font-size: 11.5px;
	letter-spacing: 0.04em;
	color: var(--ink-soft);
	border: 1px solid var(--line);
	border-radius: 3px;
	padding: 3px 9px;
	background: rgba(255, 255, 255, 0.5);
}
.case-meta--hero { margin-top: 14px; }
.case-desc {
	margin: 0;
	font-size: 14px;
	color: var(--moss);
	line-height: 1.8;
}

/* =====================================================
   合规保障(墨色区块)
   ===================================================== */
.assure-grid {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: clamp(40px, 6vw, 80px);
	align-items: start;
}
.assure-grid .section-head { margin-bottom: 0; }
.seal--assure {
	position: static;
	margin-top: 34px;
	transform: rotate(-8deg);
	mix-blend-mode: normal;
	background: rgba(244, 245, 240, 0.06);
	color: var(--seal-soft);
	border-color: var(--seal-soft);
}
.assure-list {
	margin: 0; padding: 0;
	list-style: none;
}
.assure-item {
	padding: 22px 2px;
	border-top: 1px solid rgba(244, 245, 240, 0.16);
	display: grid;
	grid-template-columns: 130px 1fr;
	gap: 18px;
	align-items: baseline;
}
.assure-item:last-child { border-bottom: 1px solid rgba(244, 245, 240, 0.16); }
.assure-item h3 {
	margin: 0;
	font-size: 18px;
	color: var(--paper);
}
.assure-item h3::before {
	content: "✓";
	display: inline-grid;
	place-items: center;
	width: 20px; height: 20px;
	margin-right: 10px;
	border-radius: 50%;
	background: var(--seal);
	color: var(--paper);
	font-family: var(--sans);
	font-size: 12px;
	vertical-align: 2px;
}
.assure-item p {
	margin: 0;
	font-size: 14.5px;
	color: rgba(244, 245, 240, 0.68);
	line-height: 1.8;
}

/* =====================================================
   服务对象
   ===================================================== */
.clients { padding-block: clamp(48px, 6vw, 72px); }
.clients-lead {
	text-align: center;
	margin: 0 0 22px;
	font-size: 13px;
	letter-spacing: 0.24em;
	color: var(--moss);
}
.clients-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 14px 0;
	margin: 0; padding: 0;
	list-style: none;
}
.clients-list li {
	font-family: var(--serif);
	font-size: clamp(16px, 2vw, 19px);
	color: var(--ink-soft);
	letter-spacing: 0.06em;
	padding: 0 26px;
	position: relative;
}
.clients-list li + li::before {
	content: "·";
	position: absolute;
	left: -4px;
	color: var(--seal);
}

/* =====================================================
   会务动态
   ===================================================== */
.news-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}
.news-card {
	background: var(--paper-soft);
	border: 1px solid var(--line-soft);
	border-top: 3px solid var(--pine);
	border-radius: var(--r-s);
	padding: 24px;
	transition: border-color 0.25s ease, transform 0.25s ease;
}
.news-card:hover { transform: translateY(-4px); border-top-color: var(--seal); }
.news-card time {
	font-family: var(--mono);
	font-size: 12px;
	letter-spacing: 0.08em;
	color: var(--moss);
}
.news-card h3 { font-size: 17px; margin: 10px 0 10px; line-height: 1.55; }
.news-card h3 a { color: var(--ink); }
.news-card h3 a:hover { color: var(--pine); }
.news-card p { margin: 0; font-size: 14px; color: var(--moss); line-height: 1.8; }

/* =====================================================
   联系区块与表单
   ===================================================== */
.contact { background: var(--tint); }
.contact--page { background: transparent; padding-top: clamp(24px, 3vw, 40px); }
.contact-grid {
	display: grid;
	grid-template-columns: 0.95fr 1.05fr;
	gap: clamp(36px, 5vw, 72px);
	align-items: start;
}
.contact-list {
	margin: 30px 0 0;
	padding: 0;
	list-style: none;
}
.contact-list li {
	display: grid;
	grid-template-columns: 88px 1fr;
	gap: 14px;
	padding: 13px 0;
	border-top: 1px solid var(--line);
	align-items: baseline;
}
.contact-list li:last-child { border-bottom: 1px solid var(--line); }
.c-label {
	font-size: 12.5px;
	letter-spacing: 0.18em;
	color: var(--moss);
}
.c-value {
	font-size: 16px;
	color: var(--ink);
	font-variant-numeric: tabular-nums;
}
a.c-value:hover { color: var(--seal); }

.contact-panel {
	background: var(--paper-soft);
	border: 1px solid var(--ink);
	border-radius: var(--r-m);
	padding: clamp(24px, 3vw, 36px);
	box-shadow: var(--shadow-print);
}

.contact-form .form-row--half {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}
.form-field { margin: 0 0 18px; }
.form-field label {
	display: block;
	margin-bottom: 7px;
	font-size: 13px;
	letter-spacing: 0.12em;
	color: var(--ink-soft);
}
.form-field label em {
	color: var(--seal);
	font-style: normal;
	margin-left: 2px;
}
.form-field input,
.form-field select,
.form-field textarea {
	width: 100%;
	padding: 11px 12px;
	border: 1px solid var(--line);
	border-radius: var(--r-s);
	background: #fff;
	font-family: var(--sans);
	font-size: 15px;
	color: var(--ink);
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
	outline: none;
	border-color: var(--pine);
	box-shadow: 0 0 0 3px rgba(31, 79, 70, 0.14);
}
.form-submit {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
	margin: 4px 0 0;
}
.form-hint { font-size: 12.5px; color: var(--moss); }

.hp-field {
	position: absolute !important;
	left: -9999px;
	opacity: 0;
	height: 0;
	overflow: hidden;
}

.form-notice {
	padding: 13px 16px;
	border-radius: var(--r-s);
	font-size: 14.5px;
	margin-bottom: 20px;
	border: 1px solid transparent;
}
.form-notice--ok {
	background: rgba(31, 79, 70, 0.08);
	border-color: rgba(31, 79, 70, 0.35);
	color: var(--pine-deep);
}
.form-notice--err {
	background: rgba(190, 62, 35, 0.07);
	border-color: rgba(190, 62, 35, 0.4);
	color: var(--seal);
}

/* =====================================================
   内页通用:页首 / 列表 / 详情
   ===================================================== */
.page-hero {
	padding: clamp(48px, 6vw, 80px) 0 clamp(28px, 4vw, 44px);
	background: linear-gradient(180deg, rgba(232, 237, 230, 0.55), rgba(244, 245, 240, 0));
}
.page-title {
	font-size: clamp(28px, 4vw, 42px);
	margin: 12px 0 0;
}
.page-title span { color: var(--seal); }
.page-desc { color: var(--moss); margin: 14px 0 0; max-width: 620px; }

.layout-sidebar {
	display: grid;
	grid-template-columns: 1fr 320px;
	gap: clamp(36px, 5vw, 64px);
	padding-block: clamp(36px, 5vw, 64px);
	align-items: start;
}
.content-area { min-width: 0; }

/* 列表条目 */
.entry-item {
	display: grid;
	grid-template-columns: 260px 1fr;
	gap: 26px;
	padding: 26px 0;
	border-bottom: 1px solid var(--line-soft);
}
.entry-item:first-child { padding-top: 0; }
.entry-thumb {
	border-radius: var(--r-s);
	overflow: hidden;
	border: 1px solid var(--line-soft);
	align-self: start;
}
.entry-thumb img { aspect-ratio: 3 / 2; object-fit: cover; width: 100%; }
.entry-item:not(:has(.entry-thumb)) { grid-template-columns: 1fr; }
.entry-meta {
	margin: 0 0 8px;
	font-family: var(--mono);
	font-size: 12px;
	letter-spacing: 0.08em;
	color: var(--moss);
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
}
.entry-cats a { color: var(--pine); }
.entry-title { font-size: 21px; margin-bottom: 10px; line-height: 1.5; }
.entry-title a { color: var(--ink); }
.entry-title a:hover { color: var(--pine); }
.entry-excerpt { margin: 0 0 12px; font-size: 14.5px; color: var(--moss); }
.entry-more {
	font-size: 14px;
	letter-spacing: 0.08em;
	border-bottom: 1px solid currentColor;
	padding-bottom: 2px;
}

/* 正文排版 */
.single-thumb { margin-bottom: clamp(28px, 4vw, 44px); }
.single-thumb img {
	border-radius: var(--r-m);
	border: 1px solid var(--line-soft);
}
.entry-content { font-size: 16.5px; line-height: 2; }
.entry-content > * + * { margin-top: 1.1em; }
.entry-content h2 {
	font-size: 26px;
	margin-top: 2em;
	padding-left: 14px;
	border-left: 4px solid var(--seal);
}
.entry-content h3 { font-size: 21px; margin-top: 1.8em; }
.entry-content a { border-bottom: 1px solid rgba(31, 79, 70, 0.4); }
.entry-content blockquote {
	margin: 1.4em 0;
	padding: 4px 0 4px 22px;
	border-left: 3px solid var(--pine);
	color: var(--ink-soft);
	font-family: var(--serif);
}
.entry-content ul,
.entry-content ol { padding-left: 1.4em; }
.entry-content li { margin: 0.3em 0; }
.entry-content img { border-radius: var(--r-s); }
.entry-content table {
	width: 100%;
	border-collapse: collapse;
	font-size: 14.5px;
}
.entry-content th,
.entry-content td {
	border: 1px solid var(--line);
	padding: 10px 14px;
	text-align: left;
}
.entry-content th {
	background: var(--tint);
	font-family: var(--serif);
	letter-spacing: 0.04em;
}
.entry-content code {
	font-family: var(--mono);
	font-size: 0.9em;
	background: var(--tint);
	padding: 2px 6px;
	border-radius: 3px;
}
.entry-content pre {
	background: var(--ink);
	color: var(--paper);
	padding: 18px 20px;
	border-radius: var(--r-s);
	overflow-x: auto;
}
.entry-content pre code { background: transparent; color: inherit; padding: 0; }

.wp-block-image figcaption,
.entry-content figcaption {
	font-size: 13px;
	color: var(--moss);
	text-align: center;
	margin-top: 8px;
}
.alignwide { width: min(980px, 100%); margin-inline: auto; }
.alignfull { width: 100%; }

.single-foot { padding-block: clamp(28px, 4vw, 44px) clamp(48px, 6vw, 72px); }
.tag-list a {
	display: inline-block;
	font-size: 13px;
	border: 1px solid var(--line);
	border-radius: 3px;
	padding: 4px 12px;
	margin: 0 8px 8px 0;
	color: var(--ink-soft);
}
.tag-list a:hover { border-color: var(--seal); color: var(--seal); }
.post-nav {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	padding-top: 22px;
	border-top: 1px solid var(--line);
	font-size: 14.5px;
}
.post-nav div:last-child { text-align: right; }
.single-cta { margin-top: 30px; }

/* 分页 */
.pagination-wrap { padding-top: 34px; }
.nav-links {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	align-items: center;
}
.nav-links .page-numbers {
	display: inline-grid;
	place-items: center;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	border: 1px solid var(--line);
	border-radius: var(--r-s);
	color: var(--ink-soft);
	font-family: var(--mono);
	font-size: 14px;
}
.nav-links .page-numbers.current {
	background: var(--pine);
	border-color: var(--pine);
	color: var(--paper);
}
.nav-links a.page-numbers:hover { border-color: var(--seal); color: var(--seal); }

/* 侧栏小工具 */
.sidebar .widget {
	background: var(--paper-soft);
	border: 1px solid var(--line-soft);
	border-radius: var(--r-m);
	padding: 24px;
	margin-bottom: 22px;
}
.widget-title {
	font-size: 16px;
	letter-spacing: 0.1em;
	margin-bottom: 14px;
	padding-bottom: 12px;
	border-bottom: 2px solid var(--ink);
}
.sidebar .widget ul {
	margin: 0; padding: 0;
	list-style: none;
}
.sidebar .widget li { padding: 7px 0; border-bottom: 1px dashed var(--line-soft); font-size: 14.5px; }
.sidebar .widget li:last-child { border-bottom: 0; }
.widget-cta { border-color: var(--pine); }
.widget-phone {
	font-family: var(--mono);
	font-size: 21px;
	color: var(--pine);
	margin: 6px 0 16px;
}
.widget .btn { width: 100%; }

/* 搜索表单 */
.search-form {
	display: flex;
	gap: 10px;
	max-width: 460px;
}
.search-field {
	flex: 1;
	padding: 12px 14px;
	border: 1px solid var(--line);
	border-radius: var(--r-s);
	background: #fff;
	font-family: var(--sans);
	font-size: 15px;
}
.search-field:focus {
	outline: none;
	border-color: var(--pine);
	box-shadow: 0 0 0 3px rgba(31, 79, 70, 0.14);
}

/* 404 */
.error-404 { text-align: center; }
.error-404 .error-code {
	font-family: var(--mono);
	font-size: clamp(60px, 10vw, 96px);
	color: var(--tint);
	-webkit-text-stroke: 2px var(--pine);
	margin: 0 0 6px;
	line-height: 1;
}
.error-404 .search-form { margin: 26px auto; }
.error-404 .page-desc { margin-inline: auto; }

/* 无结果 */
.no-results h2 { font-size: 24px; }
.no-results .search-form { margin-top: 20px; }

/* 评论(基础样式) */
.comments-area { padding-block: 20px 60px; }
.comment-list { list-style: none; margin: 0; padding: 0; }
.comment-list .comment { padding: 18px 0; border-bottom: 1px solid var(--line-soft); }
.comment-list .children { list-style: none; padding-left: 28px; }
.comment-author { font-weight: 600; }
.comment-metadata { font-size: 12px; color: var(--moss); }
.comment-form label { display: block; margin-bottom: 6px; font-size: 13px; color: var(--ink-soft); }
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
	width: 100%;
	padding: 11px 12px;
	border: 1px solid var(--line);
	border-radius: var(--r-s);
	background: #fff;
	font-family: var(--sans);
	font-size: 15px;
	margin-bottom: 14px;
}
.comment-form .submit {
	background: var(--pine);
	color: var(--paper);
	border: 0;
	border-radius: var(--r-s);
	padding: 12px 26px;
	cursor: pointer;
	font-size: 15px;
}

/* =====================================================
   页脚
   ===================================================== */
.site-footer {
	background: var(--ink);
	color: rgba(244, 245, 240, 0.78);
	margin-top: 0;
}
.footer-grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr 1.2fr;
	gap: clamp(32px, 5vw, 72px);
	padding-block: clamp(48px, 6vw, 72px) clamp(36px, 4vw, 52px);
}
.footer-name {
	font-family: var(--serif);
	font-size: 20px;
	font-weight: 700;
	color: var(--paper);
	margin: 16px 0 10px;
	letter-spacing: 0.06em;
}
.footer-desc { font-size: 14px; line-height: 1.9; margin: 0; color: rgba(244, 245, 240, 0.6); }
.footer-title {
	font-size: 14px;
	letter-spacing: 0.2em;
	color: var(--paper);
	margin-bottom: 18px;
}
.footer-list {
	margin: 0; padding: 0;
	list-style: none;
	font-size: 14.5px;
}
.footer-list li {
	display: flex;
	gap: 14px;
	padding: 6px 0;
	align-items: baseline;
}
.footer-list span {
	flex: none;
	font-size: 12px;
	letter-spacing: 0.16em;
	color: rgba(244, 245, 240, 0.45);
}
.footer-list a { color: rgba(244, 245, 240, 0.85); }
.footer-list a:hover { color: var(--seal-soft); }
.footer-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 4px 18px;
	margin: 20px 0 0;
	padding: 0;
	list-style: none;
	font-size: 13.5px;
}
.footer-nav a { color: rgba(244, 245, 240, 0.6); }
.footer-nav a:hover { color: var(--paper); }
.footer-bar { border-top: 1px solid rgba(244, 245, 240, 0.12); }
.footer-bar-inner {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	flex-wrap: wrap;
	padding-block: 18px;
	font-size: 12.5px;
	color: rgba(244, 245, 240, 0.45);
}
.footer-bar-inner p { margin: 0; }
.footer-bar-inner a { color: inherit; }
.footer-bar-inner a:hover { color: var(--paper); }

/* =====================================================
   入场动效(仅在 JS 可用时启用)
   ===================================================== */
.js .reveal {
	opacity: 0;
	transform: translateY(16px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}
.js .reveal.is-in {
	opacity: 1;
	transform: none;
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	.js .reveal { opacity: 1; transform: none; transition: none; }
	.live-dot { animation: none; }
	*,
	*::before,
	*::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* =====================================================
   响应式
   ===================================================== */
@media (max-width: 1120px) {
	.hero-vertical { display: none; }
}

@media (max-width: 1024px) {
	.service-grid,
	.case-grid,
	.news-grid { grid-template-columns: repeat(2, 1fr); }
	.process { grid-template-columns: repeat(3, 1fr); gap: 34px 26px; }
	.process-step:nth-child(3)::before { right: 0; }
	.assure-grid { grid-template-columns: 1fr; }
	.seal--assure { display: none; }
	.layout-sidebar { grid-template-columns: 1fr; }
	.footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
	.header-inner { min-height: 68px; }
	.nav-toggle { display: block; }
	.site-nav {
		position: fixed;
		inset: 68px 0 auto 0;
		z-index: 99;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		background: var(--paper-soft);
		border-bottom: 1px solid var(--line);
		box-shadow: 0 24px 48px rgba(26, 40, 34, 0.14);
		padding: 12px 24px 24px;
		transform: translateY(-12px);
		opacity: 0;
		visibility: hidden;
		transition: transform 0.22s ease, opacity 0.22s ease, visibility 0.22s;
		max-height: calc(100vh - 68px);
		overflow-y: auto;
	}
	.site-nav.is-open {
		transform: none;
		opacity: 1;
		visibility: visible;
	}
	.nav-menu { flex-direction: column; align-items: stretch; gap: 0; }
	.nav-menu a {
		display: block;
		padding: 14px 4px;
		border-bottom: 1px solid var(--line-soft);
		font-size: 16px;
	}
	.nav-menu .sub-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		border: 0;
		box-shadow: none;
		background: transparent;
		padding: 0 0 0 18px;
	}
	.nav-cta { margin-top: 18px; }

	.hero-grid { grid-template-columns: 1fr; }
	.hero-card { max-width: 560px; }
	.contact-grid { grid-template-columns: 1fr; }
	.stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 20px; }
	.entry-item { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
	body { font-size: 15.5px; }
	.wrap { width: calc(100% - 40px); }
	.service-grid,
	.case-grid,
	.news-grid { grid-template-columns: 1fr; }
	.process { grid-template-columns: 1fr; gap: 0; }
	.process-step {
		padding: 20px 0 20px 26px;
		border-left: 1px solid var(--line);
	}
	.process-step::before { display: none; }
	.process-step::after { top: 26px; left: -5px; }
	.process-step:nth-child(4) { border-left-color: var(--seal); }
	.contact-form .form-row--half { grid-template-columns: 1fr; gap: 0; }
	.assure-item { grid-template-columns: 1fr; gap: 8px; }
	.footer-grid { grid-template-columns: 1fr; }
	.agenda { padding: 20px 18px 16px; }
	.agenda-rows li { grid-template-columns: 48px 1fr; }
	.a-note { grid-column: 2; }
	.seal-stamp { right: -6px; bottom: -16px; width: 72px; height: 72px; font-size: 20px; }
	.post-nav { flex-direction: column; }
	.post-nav div:last-child { text-align: left; }
}
