/*
Theme Name: 盛演晚会 Shengyan Show
Theme URI: https://example.com/shengyan-show
Author: 文化传媒站群
Description: 文艺晚会演出公司专用主题。绛紫幕布×琥珀追光的剧院质感：幕布顶檐首屏、追光锥、节目资源横条（直连站群演艺资源）、汉字幕次步骤。十段式转化首页（晚会类型/节目直供/案例/流程/价格/口碑/FAQ/联系），内建 SEO 与结构化数据。零外部依赖。
Version: 1.0.0
Requires at least: 6.0
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: shengyan-show
Tags: business, one-column, custom-logo, custom-menu, featured-images
*/

/* ==========================================================================
   0. 设计令牌
   ========================================================================== */

:root {
	--sy-stage: #1c0f26;
	--sy-deep: #22102c;
	--sy-panel: #2c1538;
	--sy-curtain: #a63a63;
	--sy-curtain-lt: #c34f78;
	--sy-rose: #e0568b;
	--sy-amber: #f5b942;
	--sy-amber-deep: #d99a1f;
	--sy-text: #f7eedf;
	--sy-text-dim: rgba(247, 238, 223, 0.66);
	--sy-text-faint: rgba(247, 238, 223, 0.42);
	--sy-line: rgba(224, 86, 139, 0.3);
	--sy-line-faint: rgba(224, 86, 139, 0.15);
	--sy-amber-grad: linear-gradient(135deg, #ffd374, #f5b942 55%, #d99a1f);
	--sy-card: linear-gradient(165deg, rgba(224, 86, 139, 0.1), rgba(224, 86, 139, 0.03));
	--sy-serif: Georgia, "Songti SC", "Noto Serif SC", "STSong", "SimSun", serif;
	--sy-sans: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Source Han Sans SC", sans-serif;
	--sy-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
	--sy-radius: 16px;
}

/* ==========================================================================
   1. 基础与排版
   ========================================================================== */

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
	scroll-padding-top: 92px;
}

body {
	margin: 0;
	font-family: var(--sy-sans);
	font-size: 16px;
	line-height: 1.8;
	color: var(--sy-text);
	background:
		radial-gradient(900px 560px at 85% -140px, rgba(166, 58, 99, 0.22), transparent 60%),
		radial-gradient(700px 460px at -80px 40%, rgba(245, 185, 66, 0.07), transparent 55%),
		var(--sy-stage);
	-webkit-font-smoothing: antialiased;
	overflow-wrap: anywhere;
}

h1, h2, h3, h4, h5, h6 {
	margin: 0 0 0.6em;
	font-family: var(--sy-serif);
	font-weight: 700;
	line-height: 1.32;
	color: var(--sy-text);
	letter-spacing: 0.02em;
}

p {
	margin: 0 0 1em;
}

a {
	color: var(--sy-amber);
	text-decoration: none;
	transition: color 0.2s ease;
}

a:hover {
	color: #ffd374;
}

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

svg {
	display: block;
}

ul, ol {
	margin: 0;
	padding: 0;
}

button {
	font-family: inherit;
}

::selection {
	background: var(--sy-amber);
	color: #2b1c05;
}

:focus-visible {
	outline: 2px solid var(--sy-amber);
	outline-offset: 3px;
	border-radius: 4px;
}

.sy-container {
	width: min(1180px, 100% - 48px);
	margin-inline: auto;
}

.sy-kicker,
.sy-section-kicker,
.sy-cta-kicker {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin: 0 0 16px;
	font-size: 0.82rem;
	letter-spacing: 0.36em;
	color: var(--sy-amber);
}

.sy-kicker::before,
.sy-kicker::after,
.sy-section-kicker::before,
.sy-section-kicker::after,
.sy-cta-kicker::before,
.sy-cta-kicker::after {
	content: "✦";
	font-size: 0.7em;
	color: var(--sy-rose);
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	width: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
}

.skip-link {
	position: absolute;
	left: 12px;
	top: -60px;
	z-index: 200;
	padding: 10px 18px;
	background: var(--sy-amber);
	color: #2b1c05;
	border-radius: 6px;
}

.skip-link:focus {
	top: 12px;
	clip: auto;
	clip-path: none;
	width: auto;
	height: auto;
}

/* ==========================================================================
   2. 按钮
   ========================================================================== */

.sy-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5em;
	padding: 0.82em 1.75em;
	border: 1px solid transparent;
	border-radius: 999px;
	font-size: 0.95rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	line-height: 1.2;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.sy-btn .sy-ic {
	flex: none;
}

.sy-btn-amber {
	background: var(--sy-amber-grad);
	color: #2b1c05;
	box-shadow: 0 12px 28px rgba(245, 185, 66, 0.3);
}

.sy-btn-amber:hover {
	color: #2b1c05;
	transform: translateY(-2px);
	box-shadow: 0 18px 36px rgba(245, 185, 66, 0.42);
}

.sy-btn-ghost {
	color: var(--sy-text);
	border-color: rgba(224, 86, 139, 0.55);
	background: rgba(224, 86, 139, 0.08);
}

.sy-btn-ghost:hover {
	color: #fff;
	background: rgba(224, 86, 139, 0.18);
	border-color: rgba(224, 86, 139, 0.85);
	transform: translateY(-2px);
}

.sy-btn-lg {
	padding: 1em 2.1em;
	font-size: 1.02rem;
}

.sy-btn-sm {
	padding: 0.55em 1.15em;
	font-size: 0.87rem;
}

.sy-btn-block {
	width: 100%;
}

/* ==========================================================================
   3. 页头
   ========================================================================== */

.sy-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(28, 15, 38, 0.84);
	-webkit-backdrop-filter: blur(14px);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--sy-line-faint);
	transition: box-shadow 0.25s ease, background-color 0.25s ease;
}

.sy-header-scrolled {
	background: rgba(28, 15, 38, 0.96);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
}

.sy-header-in {
	display: flex;
	align-items: center;
	gap: 28px;
	min-height: 74px;
}

.sy-brand {
	flex: none;
	min-width: 0;
}

.sy-logo {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: var(--sy-text);
}

.sy-logo:hover {
	color: #fff;
}

.sy-logo-mark {
	flex: none;
	display: inline-flex;
}

.sy-logo-text {
	font-family: var(--sy-serif);
	font-size: 1.3rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	white-space: nowrap;
}

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

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

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

.sy-menu {
	display: flex;
	align-items: center;
	gap: 4px;
	list-style: none;
}

.sy-menu a {
	display: inline-block;
	padding: 10px 14px;
	font-size: 0.95rem;
	letter-spacing: 0.08em;
	color: var(--sy-text-dim);
	border-radius: 8px;
}

.sy-menu a:hover {
	color: #fff;
	background: rgba(224, 86, 139, 0.12);
}

.sy-menu .current-menu-item > a,
.sy-menu .current_page_item > a {
	color: #fff;
}

.sy-header-cta {
	flex: none;
}

.sy-nav-toggle {
	display: none;
	flex: none;
	width: 44px;
	height: 44px;
	padding: 0;
	background: transparent;
	border: 1px solid var(--sy-line);
	border-radius: 10px;
	cursor: pointer;
	align-items: center;
	justify-content: center;
}

.sy-nav-toggle-box {
	display: inline-flex;
	flex-direction: column;
	gap: 5px;
	width: 18px;
}

.sy-nav-toggle-box i {
	display: block;
	height: 2.2px;
	border-radius: 2px;
	background: var(--sy-amber);
	transition: transform 0.25s ease, opacity 0.25s ease;
}

.sy-nav-open .sy-nav-toggle-box i:nth-child(1) {
	transform: translateY(7.2px) rotate(45deg);
}

.sy-nav-open .sy-nav-toggle-box i:nth-child(2) {
	opacity: 0;
}

.sy-nav-open .sy-nav-toggle-box i:nth-child(3) {
	transform: translateY(-7.2px) rotate(-45deg);
}

/* ==========================================================================
   4. 首屏：幕布 + 追光
   ========================================================================== */

.sy-hero {
	position: relative;
	padding: clamp(120px, 15vw, 190px) 0 clamp(64px, 9vw, 100px);
	text-align: center;
	overflow: hidden;
}

.sy-hero-curtain {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	pointer-events: none;
}

.sy-hero-curtain svg {
	width: 100%;
	height: clamp(90px, 11vw, 150px);
	filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.4));
}

.sy-hero-lights {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		linear-gradient(115deg, transparent 12%, rgba(245, 185, 66, 0.12) 22%, transparent 34%),
		linear-gradient(-115deg, transparent 12%, rgba(245, 185, 66, 0.12) 22%, transparent 34%),
		radial-gradient(640px 380px at 50% 34%, rgba(224, 86, 139, 0.12), transparent 65%);
}

.sy-hero-in {
	position: relative;
}

.sy-hero-title {
	margin: 0 0 24px;
	font-size: clamp(2.2rem, 4.9vw, 3.8rem);
	font-weight: 700;
	line-height: 1.3;
}

.sy-hero-title em {
	font-style: normal;
	background: linear-gradient(105deg, #ffd374, #f5b942 50%, #e8a52e);
	-webkit-background-clip: text;
	background-clip: text;
	color: var(--sy-amber);
	-webkit-text-fill-color: transparent;
}

.sy-hero-sub {
	max-width: 620px;
	margin: 0 auto 36px;
	font-size: clamp(1rem, 1.4vw, 1.1rem);
	line-height: 2;
	color: var(--sy-text-dim);
}

.sy-hero-cta {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 14px;
}

.sy-hero-chips {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
	margin: 30px 0 0;
	list-style: none;
}

.sy-chip {
	padding: 7px 16px;
	font-size: 0.85rem;
	letter-spacing: 0.06em;
	color: var(--sy-text-dim);
	border: 1px solid var(--sy-line);
	border-radius: 999px;
	background: rgba(224, 86, 139, 0.06);
}

/* ==========================================================================
   5. 数字
   ========================================================================== */

.sy-stats {
	border-block: 1px solid var(--sy-line-faint);
	background: linear-gradient(90deg, transparent, rgba(224, 86, 139, 0.08), transparent);
	padding: 42px 0;
}

.sy-stats-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 28px;
	text-align: center;
}

.sy-stat-num {
	margin: 0;
	font-family: var(--sy-serif);
	font-size: clamp(2.1rem, 3.4vw, 2.9rem);
	font-weight: 700;
	line-height: 1.1;
	color: var(--sy-amber);
}

.sy-stat-num span {
	font-size: 0.48em;
	margin-left: 3px;
	color: var(--sy-rose);
}

.sy-stat-label {
	margin: 8px 0 0;
	font-size: 0.9rem;
	letter-spacing: 0.1em;
	color: var(--sy-text-dim);
}

/* ==========================================================================
   6. 区块通用
   ========================================================================== */

.sy-section {
	padding: clamp(72px, 9vw, 106px) 0;
}

.sy-section-alt {
	background:
		linear-gradient(180deg, rgba(166, 58, 99, 0.08), transparent 240px),
		var(--sy-deep);
}

.sy-section-head {
	max-width: 720px;
	margin: 0 auto clamp(42px, 6vw, 58px);
	text-align: center;
}

.sy-section-title {
	margin: 0 0 16px;
	font-size: clamp(1.7rem, 3.4vw, 2.4rem);
}

.sy-section-sub {
	margin: 0;
	color: var(--sy-text-dim);
	line-height: 2;
}

/* ==========================================================================
   7. 晚会类型卡
   ========================================================================== */

.sy-services-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.sy-service-card {
	padding: 32px 28px;
	background: var(--sy-card);
	border: 1px solid var(--sy-line);
	border-radius: var(--sy-radius);
	transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.sy-service-card:hover {
	transform: translateY(-5px);
	border-color: rgba(245, 185, 66, 0.5);
	box-shadow: var(--sy-shadow);
}

.sy-service-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	margin-bottom: 18px;
	color: var(--sy-amber);
	border: 1px solid rgba(245, 185, 66, 0.4);
	border-radius: 50%;
	background: radial-gradient(circle at 32% 26%, rgba(245, 185, 66, 0.18), rgba(245, 185, 66, 0.04));
}

.sy-service-title {
	margin: 0 0 10px;
	font-size: 1.16rem;
	letter-spacing: 0.05em;
}

.sy-service-text {
	margin: 0;
	font-family: var(--sy-sans);
	font-size: 0.94rem;
	line-height: 1.9;
	color: var(--sy-text-dim);
}

/* ==========================================================================
   8. 节目资源条
   ========================================================================== */

.sy-programs {
	padding: clamp(56px, 7vw, 80px) 0;
	background:
		radial-gradient(700px 300px at 50% 0%, rgba(245, 185, 66, 0.1), transparent 65%),
		var(--sy-panel);
	border-block: 1px solid var(--sy-line-faint);
}

.sy-programs .sy-section-head {
	margin-bottom: clamp(28px, 4vw, 40px);
}

.sy-programs-grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 14px;
}

.sy-program {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 16px 10px;
	font-size: 0.96rem;
	letter-spacing: 0.08em;
	color: var(--sy-text);
	border: 1px solid var(--sy-line);
	border-radius: 12px;
	background: rgba(28, 15, 38, 0.5);
	transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.sy-program:hover {
	color: #fff;
	transform: translateY(-3px);
	border-color: rgba(245, 185, 66, 0.6);
	background: rgba(245, 185, 66, 0.08);
}

.sy-program-ic {
	color: var(--sy-amber);
	font-size: 0.8em;
}

/* ==========================================================================
   9. 案例
   ========================================================================== */

.sy-cases-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.sy-case-card {
	overflow: hidden;
	background: var(--sy-card);
	border: 1px solid var(--sy-line);
	border-radius: var(--sy-radius);
	transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.sy-case-card:hover {
	transform: translateY(-5px);
	border-color: rgba(245, 185, 66, 0.5);
	box-shadow: var(--sy-shadow);
}

.sy-case-art {
	aspect-ratio: 16 / 10;
	border-bottom: 1px solid var(--sy-line-faint);
}

.sy-case-art svg {
	width: 100%;
	height: 100%;
}

.sy-case-body {
	padding: 22px 24px 26px;
}

.sy-case-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 14px;
}

.sy-tag {
	padding: 4px 12px;
	font-size: 0.78rem;
	letter-spacing: 0.08em;
	color: var(--sy-amber);
	border: 1px solid rgba(245, 185, 66, 0.4);
	border-radius: 999px;
	background: rgba(245, 185, 66, 0.07);
}

.sy-case-title {
	margin: 0 0 8px;
	font-size: 1.08rem;
	line-height: 1.6;
}

.sy-case-meta {
	margin: 0;
	font-size: 0.87rem;
	color: var(--sy-text-faint);
}

.sy-cases-note {
	margin: 26px 0 0;
	text-align: center;
	font-size: 0.84rem;
	color: var(--sy-text-faint);
}

/* ==========================================================================
   10. 流程（汉字幕次）
   ========================================================================== */

.sy-process {
	position: relative;
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 26px;
	list-style: none;
}

.sy-process::before {
	content: "";
	position: absolute;
	top: 27px;
	left: 4%;
	right: 4%;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--sy-line) 15%, var(--sy-line) 85%, transparent);
}

.sy-process-step {
	position: relative;
}

.sy-step-num {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	margin-bottom: 16px;
	font-family: var(--sy-serif);
	font-size: 1.25rem;
	font-weight: 700;
	color: #2b1c05;
	background: var(--sy-amber-grad);
	border-radius: 50%;
	box-shadow: 0 0 0 6px var(--sy-stage), 0 10px 22px rgba(245, 185, 66, 0.3);
}

.sy-step-title {
	margin: 0 0 8px;
	font-size: 1.1rem;
	letter-spacing: 0.06em;
}

.sy-step-text {
	margin: 0;
	font-family: var(--sy-sans);
	font-size: 0.9rem;
	line-height: 1.85;
	color: var(--sy-text-dim);
}

/* ==========================================================================
   11. 价格
   ========================================================================== */

.sy-plans-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
	align-items: stretch;
}

.sy-plan-card {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: 36px 30px 30px;
	background: var(--sy-card);
	border: 1px solid var(--sy-line);
	border-radius: 20px;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sy-plan-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--sy-shadow);
}

.sy-plan-featured {
	background:
		linear-gradient(175deg, rgba(245, 185, 66, 0.12), rgba(224, 86, 139, 0.05) 55%),
		var(--sy-panel);
	border: 1.5px solid rgba(245, 185, 66, 0.55);
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.sy-plan-badge {
	position: absolute;
	top: -15px;
	left: 50%;
	transform: translateX(-50%);
	margin: 0;
	padding: 6px 18px;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	white-space: nowrap;
	color: #2b1c05;
	background: var(--sy-amber-grad);
	border-radius: 999px;
	box-shadow: 0 8px 22px rgba(245, 185, 66, 0.4);
}

.sy-plan-name {
	margin: 0 0 6px;
	font-size: 1.2rem;
	letter-spacing: 0.18em;
	color: var(--sy-rose);
}

.sy-plan-price {
	margin: 0 0 6px;
	font-family: var(--sy-serif);
	font-size: 2.8rem;
	font-weight: 700;
	line-height: 1.15;
	color: var(--sy-text);
}

.sy-plan-cny {
	font-size: 0.45em;
	margin-right: 4px;
	color: var(--sy-amber);
}

.sy-plan-unit {
	font-size: 0.42em;
	margin-left: 4px;
	color: var(--sy-text-faint);
}

.sy-plan-for {
	margin: 0 0 22px;
	padding-bottom: 20px;
	font-size: 0.88rem;
	color: var(--sy-text-faint);
	border-bottom: 1px solid var(--sy-line-faint);
}

.sy-plan-list {
	flex: 1;
	margin: 0 0 26px;
	list-style: none;
	display: grid;
	gap: 12px;
}

.sy-plan-list li {
	position: relative;
	padding-left: 24px;
	font-size: 0.94rem;
	color: var(--sy-text-dim);
}

.sy-plan-list li::before {
	content: "✦";
	position: absolute;
	left: 0;
	top: 0;
	font-size: 0.8em;
	color: var(--sy-amber);
}

/* ==========================================================================
   12. 口碑
   ========================================================================== */

.sy-voices-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.sy-voice-card {
	position: relative;
	margin: 0;
	padding: 34px 28px 28px;
	background: var(--sy-card);
	border: 1px solid var(--sy-line);
	border-radius: var(--sy-radius);
}

.sy-voice-card::before {
	content: "“";
	position: absolute;
	top: 2px;
	left: 20px;
	font-family: var(--sy-serif);
	font-size: 3.6rem;
	line-height: 1;
	color: var(--sy-amber);
	opacity: 0.55;
}

.sy-voice-text {
	margin: 0 0 18px;
	border: 0;
	padding: 0;
	font-size: 0.96rem;
	line-height: 2;
	color: var(--sy-text-dim);
}

.sy-voice-who {
	font-size: 0.85rem;
	letter-spacing: 0.05em;
	color: var(--sy-rose);
}

.sy-voice-who::before {
	content: "—— ";
}

/* ==========================================================================
   13. FAQ
   ========================================================================== */

.sy-faq-wrap {
	max-width: 860px;
}

.sy-faq {
	border-top: 1px solid var(--sy-line);
}

.sy-faq-item {
	border-bottom: 1px solid var(--sy-line-faint);
}

.sy-faq-q {
	position: relative;
	padding: 22px 48px 22px 0;
	font-size: 1.04rem;
	font-weight: 600;
	letter-spacing: 0.03em;
	cursor: pointer;
	list-style: none;
	transition: color 0.2s ease;
}

.sy-faq-q::-webkit-details-marker {
	display: none;
}

.sy-faq-q:hover {
	color: #fff;
}

.sy-faq-q::after {
	content: "+";
	position: absolute;
	right: 6px;
	top: 50%;
	transform: translateY(-50%);
	font-family: var(--sy-serif);
	font-size: 1.5rem;
	font-weight: 400;
	color: var(--sy-amber);
	transition: transform 0.25s ease;
}

.sy-faq-item[open] .sy-faq-q::after {
	transform: translateY(-50%) rotate(45deg);
}

.sy-faq-a {
	padding: 0 40px 24px 0;
	color: var(--sy-text-dim);
	line-height: 2;
}

.sy-faq-a p {
	margin: 0;
}

/* ==========================================================================
   14. 联系 CTA
   ========================================================================== */

.sy-cta-band {
	position: relative;
	padding: clamp(72px, 9vw, 104px) 0;
	background:
		radial-gradient(760px 380px at 16% 0%, rgba(245, 185, 66, 0.14), transparent 60%),
		linear-gradient(160deg, #43183f, #2a1030 70%);
	border-block: 1px solid var(--sy-line-faint);
}

.sy-cta-in {
	display: grid;
	grid-template-columns: 1.15fr minmax(0, 0.85fr);
	gap: clamp(32px, 5vw, 64px);
	align-items: center;
}

.sy-cta-title {
	margin: 0 0 18px;
	font-size: clamp(1.7rem, 3.2vw, 2.4rem);
	line-height: 1.44;
}

.sy-cta-sub {
	margin: 0;
	color: var(--sy-text-dim);
	line-height: 2;
}

.sy-contact-card {
	padding: 36px 34px;
	text-align: center;
	background: rgba(28, 15, 38, 0.75);
	border: 1px solid rgba(245, 185, 66, 0.4);
	border-radius: 22px;
	box-shadow: var(--sy-shadow);
}

.sy-contact-label {
	margin: 0 0 8px;
	font-size: 0.85rem;
	letter-spacing: 0.14em;
	color: var(--sy-text-faint);
}

.sy-contact-phone {
	display: inline-block;
	margin-bottom: 20px;
	font-family: var(--sy-serif);
	font-size: clamp(1.7rem, 2.8vw, 2.2rem);
	font-weight: 700;
	letter-spacing: 0.04em;
	color: var(--sy-amber);
}

.sy-contact-phone:hover {
	color: #ffd374;
}

.sy-contact-addr {
	margin: 18px 0 0;
	font-size: 0.85rem;
	color: var(--sy-text-faint);
}

/* ==========================================================================
   15. 页脚
   ========================================================================== */

.sy-footer {
	background: #140a1c;
	border-top: 1px solid var(--sy-line-faint);
	padding-top: 64px;
}

.sy-footer-grid {
	display: grid;
	grid-template-columns: 1.5fr repeat(3, minmax(0, 1fr));
	gap: 40px;
	padding-bottom: 50px;
}

.sy-footer-logo {
	margin: 0 0 14px;
	font-family: var(--sy-serif);
	font-size: 1.4rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	color: var(--sy-text);
}

.sy-footer-blurb {
	margin: 0 0 20px;
	max-width: 340px;
	font-size: 0.9rem;
	line-height: 2;
	color: var(--sy-text-faint);
}

.sy-footer-contact {
	list-style: none;
	display: grid;
	gap: 8px;
	font-size: 0.92rem;
	color: var(--sy-text-dim);
}

.sy-footer-contact a {
	color: var(--sy-amber);
}

.sy-footer-title {
	margin: 0 0 20px;
	font-family: var(--sy-sans);
	font-size: 0.92rem;
	font-weight: 600;
	letter-spacing: 0.24em;
	color: var(--sy-rose);
}

.sy-footer-links {
	list-style: none;
	display: grid;
	gap: 12px;
}

.sy-footer-links a {
	font-size: 0.92rem;
	color: var(--sy-text-dim);
}

.sy-footer-links a:hover {
	color: #fff;
}

.sy-footer-legal {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 8px 24px;
	padding: 20px 0;
	border-top: 1px solid rgba(247, 238, 223, 0.08);
}

.sy-footer-legal p {
	margin: 0;
	font-size: 0.82rem;
	color: var(--sy-text-faint);
}

.sy-footer-legal a {
	color: var(--sy-text-faint);
}

.sy-footer-legal a:hover {
	color: #fff;
}

/* ==========================================================================
   16. 移动咨询条 & 提示
   ========================================================================== */

.sy-mobilebar {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 90;
	display: none;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	background: rgba(28, 15, 38, 0.97);
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
	border-top: 1px solid var(--sy-line);
}

.sy-mobilebar-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 15px 10px;
	font-size: 0.98rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	border: 0;
	cursor: pointer;
}

.sy-mobilebar-tel {
	background: var(--sy-amber-grad);
	color: #2b1c05;
}

.sy-mobilebar-tel:hover {
	color: #2b1c05;
}

.sy-mobilebar-wx {
	background: transparent;
	color: var(--sy-amber);
}

.sy-toast {
	position: fixed;
	left: 50%;
	bottom: 92px;
	z-index: 120;
	transform: translateX(-50%);
	max-width: min(92vw, 420px);
	padding: 12px 24px;
	font-size: 0.92rem;
	color: #2b1c05;
	background: var(--sy-amber-grad);
	border-radius: 999px;
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
	opacity: 0;
	transition: opacity 0.25s ease;
}

.sy-toast-show {
	opacity: 1;
}

/* ==========================================================================
   17. 子页 / 文章
   ========================================================================== */

.sy-page-hero {
	position: relative;
	padding: clamp(56px, 8vw, 88px) 0 clamp(38px, 6vw, 58px);
	text-align: center;
	background:
		radial-gradient(760px 300px at 50% -70px, rgba(166, 58, 99, 0.16), transparent 70%),
		transparent;
	border-bottom: 1px solid var(--sy-line-faint);
}

.sy-page-title {
	margin: 0 0 14px;
	font-size: clamp(1.8rem, 3.6vw, 2.5rem);
}

.sy-page-sub {
	max-width: 560px;
	margin: 0 auto;
	color: var(--sy-text-dim);
}

.sy-article-head .sy-article-meta {
	margin: 0;
	font-size: 0.88rem;
	color: var(--sy-text-faint);
}

.sy-article-body {
	max-width: 820px;
	padding-top: clamp(40px, 6vw, 60px);
	padding-bottom: clamp(60px, 8vw, 92px);
}

.sy-prose {
	font-size: 1.04rem;
	line-height: 2.05;
	color: var(--sy-text-dim);
}

.sy-prose p {
	margin: 1.35em 0;
}

.sy-prose h2,
.sy-prose h3,
.sy-prose h4 {
	color: var(--sy-text);
	margin: 2em 0 0.8em;
}

.sy-prose h2 {
	font-size: 1.5rem;
	padding-left: 16px;
	border-left: 3px solid var(--sy-amber);
}

.sy-prose h3 {
	font-size: 1.22rem;
	color: var(--sy-rose);
}

.sy-prose h4 {
	font-size: 1.05rem;
}

.sy-prose ul,
.sy-prose ol {
	margin: 1.3em 0;
	padding-left: 1.6em;
}

.sy-prose li {
	margin: 0.5em 0;
}

.sy-prose li::marker {
	color: var(--sy-amber);
}

.sy-prose a {
	text-decoration: underline;
	text-underline-offset: 4px;
	text-decoration-color: rgba(245, 185, 66, 0.5);
}

.sy-prose img {
	border-radius: 12px;
	margin: 1.6em auto;
}

.sy-prose blockquote {
	margin: 1.8em 0;
	padding: 18px 24px;
	background: rgba(224, 86, 139, 0.07);
	border-left: 3px solid var(--sy-rose);
	border-radius: 0 12px 12px 0;
}

.sy-prose blockquote p {
	margin: 0;
}

.sy-prose hr {
	margin: 2.4em 0;
	border: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--sy-line), transparent);
}

.sy-prose table {
	width: 100%;
	margin: 1.8em 0;
	border-collapse: collapse;
	font-size: 0.95rem;
}

.sy-prose th,
.sy-prose td {
	padding: 10px 14px;
	border: 1px solid var(--sy-line-faint);
	text-align: left;
}

.sy-prose th {
	background: rgba(245, 185, 66, 0.09);
	color: var(--sy-text);
}

.sy-prose code {
	padding: 2px 8px;
	background: rgba(245, 185, 66, 0.12);
	border-radius: 6px;
	font-size: 0.9em;
}

.sy-article-cta {
	margin: 56px 0;
	padding: 30px 32px;
	background:
		linear-gradient(160deg, rgba(245, 185, 66, 0.12), rgba(224, 86, 139, 0.06)),
		var(--sy-panel);
	border: 1px solid rgba(245, 185, 66, 0.4);
	border-radius: 18px;
}

.sy-article-cta-title {
	margin: 0 0 8px;
	font-family: var(--sy-serif);
	font-size: 1.3rem;
	font-weight: 700;
	color: var(--sy-text);
}

.sy-article-cta-sub {
	margin: 0 0 18px;
	font-size: 0.94rem;
	color: var(--sy-text-dim);
}

.sy-article-cta-btns {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.sy-related {
	margin-top: 56px;
}

.sy-related-title {
	font-size: 1.2rem;
	letter-spacing: 0.1em;
	margin-bottom: 10px;
}

.sy-related-list {
	list-style: none;
}

.sy-related-list li {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 20px;
	padding: 14px 0;
	border-bottom: 1px solid var(--sy-line-faint);
}

.sy-related-list a {
	color: var(--sy-text-dim);
}

.sy-related-list a:hover {
	color: #fff;
}

.sy-related-list span {
	flex: none;
	font-size: 0.82rem;
	color: var(--sy-text-faint);
}

.sy-post-nav {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
	margin-top: 48px;
	font-size: 0.92rem;
}

.sy-post-nav-next {
	text-align: right;
}

.sy-post-nav a {
	color: var(--sy-text-dim);
}

.sy-post-nav a:hover {
	color: #fff;
}

/* ==========================================================================
   18. 文章列表卡片
   ========================================================================== */

.sy-posts-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.sy-post-card {
	overflow: hidden;
	background: var(--sy-card);
	border: 1px solid var(--sy-line);
	border-radius: var(--sy-radius);
	transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.sy-post-card:hover {
	transform: translateY(-5px);
	border-color: rgba(245, 185, 66, 0.5);
	box-shadow: var(--sy-shadow);
}

.sy-post-card-link {
	display: block;
	color: inherit;
}

.sy-post-thumb {
	aspect-ratio: 16 / 10;
	overflow: hidden;
	border-bottom: 1px solid var(--sy-line-faint);
}

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

.sy-post-card-body {
	padding: 22px 24px 26px;
}

.sy-post-date {
	margin: 0 0 8px;
	font-size: 0.8rem;
	letter-spacing: 0.1em;
	color: var(--sy-text-faint);
}

.sy-post-card-title {
	margin: 0 0 10px;
	font-family: var(--sy-sans);
	font-size: 1.08rem;
	font-weight: 600;
	line-height: 1.6;
	color: var(--sy-text);
}

.sy-post-card-link:hover .sy-post-card-title {
	color: #fff;
}

.sy-post-card-excerpt {
	margin: 0 0 14px;
	font-size: 0.9rem;
	line-height: 1.9;
	color: var(--sy-text-dim);
}

.sy-post-more {
	font-size: 0.86rem;
	letter-spacing: 0.06em;
	color: var(--sy-amber);
}

.sy-pagination {
	margin-top: 48px;
}

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

.sy-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	min-height: 40px;
	padding: 4px 16px;
	font-size: 0.9rem;
	color: var(--sy-text-dim);
	border: 1px solid var(--sy-line);
	border-radius: 999px;
}

.sy-pagination a.page-numbers:hover {
	color: #fff;
	border-color: rgba(245, 185, 66, 0.55);
}

.sy-pagination .page-numbers.current {
	color: #2b1c05;
	background: var(--sy-amber-grad);
	border-color: transparent;
	font-weight: 700;
}

/* ==========================================================================
   19. 搜索 / 空态 / 404
   ========================================================================== */

.sy-searchform {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
}

.sy-search-input {
	width: min(380px, 100%);
	padding: 13px 22px;
	font-size: 0.95rem;
	font-family: inherit;
	color: var(--sy-text);
	background: rgba(224, 86, 139, 0.07);
	border: 1px solid var(--sy-line);
	border-radius: 999px;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.sy-search-input::placeholder {
	color: var(--sy-text-faint);
}

.sy-search-input:focus {
	outline: none;
	border-color: var(--sy-amber);
	box-shadow: 0 0 0 3px rgba(245, 185, 66, 0.16);
}

.sy-empty {
	max-width: 520px;
	margin: 0 auto;
	text-align: center;
	display: grid;
	gap: 18px;
	justify-items: center;
}

.sy-empty-title {
	margin: 0;
	font-family: var(--sy-serif);
	font-size: 1.5rem;
	font-weight: 700;
}

.sy-empty-sub {
	margin: 0;
	color: var(--sy-text-dim);
}

.sy-error404 {
	text-align: center;
}

.sy-error-code {
	margin: 0 0 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.08em;
	font-family: var(--sy-serif);
	font-size: clamp(5rem, 14vw, 8rem);
	font-weight: 700;
	line-height: 1;
	color: var(--sy-text);
}

.sy-error-star {
	display: inline-flex;
}

.sy-error-actions {
	display: grid;
	gap: 22px;
	justify-items: center;
	margin-top: 34px;
}

/* ==========================================================================
   20. WordPress 核心兼容
   ========================================================================== */

.alignleft {
	float: left;
	margin: 0.5em 1.5em 1em 0;
}

.alignright {
	float: right;
	margin: 0.5em 0 1em 1.5em;
}

.aligncenter {
	display: block;
	margin-inline: auto;
}

.wp-caption {
	max-width: 100%;
}

.wp-caption-text {
	font-size: 0.85rem;
	color: var(--sy-text-faint);
	text-align: center;
	margin-top: 8px;
}

.sticky {
	display: block;
}

.bypostauthor {
	display: block;
}

/* ==========================================================================
   21. 响应式
   ========================================================================== */

@media (max-width: 1080px) {
	.sy-services-grid,
	.sy-cases-grid,
	.sy-voices-grid,
	.sy-posts-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.sy-process {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 32px 26px;
	}

	.sy-process::before {
		display: none;
	}

	.sy-step-num {
		box-shadow: 0 10px 22px rgba(245, 185, 66, 0.3);
	}

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

@media (max-width: 900px) {
	.sy-nav {
		position: fixed;
		top: 74px;
		left: 0;
		right: 0;
		z-index: 99;
		margin: 0;
		padding: 12px 24px 28px;
		background: rgba(28, 15, 38, 0.98);
		border-bottom: 1px solid var(--sy-line);
		opacity: 0;
		visibility: hidden;
		transform: translateY(-8px);
		transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
	}

	.sy-nav-open .sy-nav {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}

	.sy-menu {
		flex-direction: column;
		align-items: stretch;
		gap: 2px;
	}

	.sy-menu a {
		display: block;
		padding: 14px 10px;
		font-size: 1.02rem;
		border-bottom: 1px solid rgba(247, 238, 223, 0.07);
	}

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

	.sy-header-cta {
		margin-left: auto;
	}

	.sy-header-in {
		gap: 14px;
	}

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

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

	.sy-cta-in {
		grid-template-columns: minmax(0, 1fr);
	}

	.sy-cta-copy {
		text-align: center;
	}

	.sy-cta-copy .sy-cta-kicker {
		justify-content: center;
	}

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

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

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

	.sy-mobilebar {
		display: grid;
	}

	body {
		padding-bottom: 58px;
	}

	.sy-toast {
		bottom: 76px;
	}

	.sy-stats-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 30px 16px;
	}

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

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

	.sy-post-nav {
		grid-template-columns: minmax(0, 1fr);
	}

	.sy-post-nav-next {
		text-align: left;
	}
}

@media (max-width: 600px) {
	.sy-container {
		width: min(1180px, 100% - 40px);
	}

	.sy-services-grid,
	.sy-cases-grid,
	.sy-voices-grid,
	.sy-posts-grid,
	.sy-process {
		grid-template-columns: minmax(0, 1fr);
	}

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

	.sy-hero-title {
		font-size: clamp(1.8rem, 8.6vw, 2.2rem);
	}

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

	.sy-footer-legal {
		flex-direction: column;
		gap: 4px;
	}

	.sy-article-cta-btns .sy-btn {
		width: 100%;
	}
}

/* ==========================================================================
   22. 动效偏好
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
	}
}
