/*
Theme Name: 栖迟民宿 Qichi Inn
Theme URI: https://example.com/qichi-inn
Author: 文化传媒站群
Description: 精品民宿/旅拍专用主题。莫兰迪灰粉×奶油×木的旅居气质，大窗远山、床与花瓶挂画、低饱和色调，衬线排版，九段式转化首页，内建 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: qichi-inn
Tags: business, one-column, custom-logo, custom-menu, featured-images
*/

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

:root {
	--qc-bg: #efe9df;
	--qc-bg-alt: #e6ded1;
	--qc-surface: #f6f1e9;
	--qc-card: #f6f1e9;
	--qc-ink: #4a463f;
	--qc-ink-dim: rgba(74, 70, 63, 0.72);
	--qc-ink-faint: rgba(74, 70, 63, 0.5);
	--qc-accent: #b98d82;
	--qc-accent-2: #c4a49c;
	--qc-accent-deep: #9a6f64;
	--qc-accent-grad: linear-gradient(135deg, #c4a49c, #b98d82 60%, #9a6f64);
	--qc-accent-ink: #f6f1e9;
	--qc-sage: #8a9887;
	--qc-wood: #b39a78;
	--qc-line: rgba(185, 141, 130, 0.5);
	--qc-line-soft: rgba(74, 70, 63, 0.14);
	--qc-line-faint: rgba(74, 70, 63, 0.07);
	--qc-head-font: Georgia, "Times New Roman", "Songti SC", "Source Han Serif SC", serif;
	--qc-body-font: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Source Han Sans SC", sans-serif;
	--qc-radius: 10px;
	--qc-radius-sm: 6px;
	--qc-shadow: 0 18px 42px rgba(154, 111, 100, 0.14);
	--qc-header-bg: rgba(239, 233, 223, 0.93);
	--qc-hero-bg: #efe9df;
}

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

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

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

body {
	margin: 0;
	font-family: var(--qc-body-font);
	font-size: 16.5px;
	line-height: 1.78;
	color: var(--qc-ink);
	background: var(--qc-bg);
	overflow-wrap: anywhere;
}

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

a {
	color: var(--qc-accent);
	text-decoration: none;
}

a:hover {
	color: var(--qc-accent-2);
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--qc-head-font);
	line-height: 1.28;
	color: var(--qc-ink);
}

button {
	font-family: inherit;
}

::selection {
	background: var(--qc-accent);
	color: var(--qc-accent-ink);
}

/* 无障碍 */
.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;
	top: -48px;
	left: 12px;
	z-index: 200;
	padding: 8px 16px;
	background: var(--qc-accent);
	color: var(--qc-accent-ink);
	border-radius: 6px;
	transition: top 0.2s;
}

.skip-link:focus {
	top: 12px;
	width: auto;
	height: auto;
	clip: auto;
	color: var(--qc-accent-ink);
}

.qc-container {
	width: min(1160px, 92vw);
	margin-inline: auto;
}

.qc-kicker {
	margin: 0 0 14px;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--qc-accent);
}

.qc-accent-text {
	color: var(--qc-accent);
}

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

.qc-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 13px 26px;
	border: 1.6px solid transparent;
	border-radius: var(--qc-radius-sm);
	font-size: 0.98rem;
	font-weight: 600;
	line-height: 1.3;
	cursor: pointer;
	transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

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

.qc-btn:active {
	transform: translateY(0);
}

.qc-btn-main {
	background: var(--qc-accent-grad);
	color: var(--qc-accent-ink);
	box-shadow: 0 10px 24px color-mix(in srgb, var(--qc-accent) 32%, transparent);
}

.qc-btn-main:hover {
	color: var(--qc-accent-ink);
	box-shadow: 0 14px 30px color-mix(in srgb, var(--qc-accent) 44%, transparent);
}

.qc-btn-ghost {
	background: transparent;
	color: var(--qc-ink);
	border-color: var(--qc-line-soft);
}

.qc-btn-ghost:hover {
	color: var(--qc-accent);
	border-color: var(--qc-accent);
}

.qc-btn-sm {
	padding: 9px 18px;
	font-size: 0.9rem;
}

.qc-btn-lg {
	padding: 15px 32px;
	font-size: 1.05rem;
}

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

.qc-ic {
	flex: none;
}

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

.qc-header {
	position: sticky;
	top: 0;
	z-index: 120;
	background: var(--qc-header-bg);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--qc-line-faint);
	transition: box-shadow 0.25s ease;
}

.qc-header-scrolled {
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

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

.qc-brand {
	flex: none;
}

.qc-logo {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--qc-ink);
	font-family: var(--qc-head-font);
	font-weight: 700;
	font-size: 1.18rem;
	letter-spacing: 0.02em;
}

.qc-logo:hover {
	color: var(--qc-ink);
}

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

.qc-nav {
	flex: 1 1 auto;
	min-width: 0;
}

.qc-menu {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.qc-menu a {
	display: inline-block;
	padding: 8px 13px;
	border-radius: var(--qc-radius-sm);
	color: var(--qc-ink-dim);
	font-size: 0.95rem;
	font-weight: 500;
}

.qc-menu a:hover {
	color: var(--qc-accent);
	background: color-mix(in srgb, var(--qc-accent) 9%, transparent);
}

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

/* 汉堡按钮（≤900px 显示） */
.qc-nav-toggle {
	display: none;
	flex: none;
	padding: 10px;
	background: transparent;
	border: 1.4px solid var(--qc-line-soft);
	border-radius: var(--qc-radius-sm);
	cursor: pointer;
}

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

.qc-nav-toggle-box i {
	height: 2px;
	background: var(--qc-ink);
	border-radius: 2px;
	transition: transform 0.22s ease, opacity 0.22s ease;
}

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

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

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

/* ==========================================================================
   4. 首屏（三种布局：center / split / poster）
   ========================================================================== */

.qc-hero {
	position: relative;
	overflow: hidden;
	background: var(--qc-hero-bg, var(--qc-bg));
}

.qc-hero-bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.qc-hero-bg svg {
	display: block;
	width: 100%;
	height: 100%;
}

.qc-hero-in {
	position: relative;
	z-index: 1;
	padding: clamp(64px, 9vw, 128px) 0 clamp(56px, 8vw, 104px);
	max-width: 880px;
	text-align: center;
}

.qc-hero-title {
	margin: 0 0 20px;
	font-size: clamp(2.2rem, 5.6vw, 3.9rem);
	font-weight: 800;
	line-height: 1.16;
	letter-spacing: 0.01em;
}

.qc-hero-sub {
	max-width: 640px;
	margin: 0 auto 34px;
	font-size: clamp(1rem, 1.6vw, 1.13rem);
	line-height: 2;
	color: var(--qc-ink-dim);
}

.qc-hero-cta {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 14px;
	margin-bottom: 34px;
}

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

.qc-chip {
	padding: 7px 16px;
	border: 1px solid var(--qc-line-soft);
	border-radius: 999px;
	font-size: 0.86rem;
	color: var(--qc-ink-dim);
	background: color-mix(in srgb, var(--qc-surface) 62%, transparent);
}

.qc-hero-emblem {
	display: flex;
	justify-content: center;
	margin-bottom: 18px;
}

/* split：左文右图 */
.qc-hero-split {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
	gap: clamp(28px, 5vw, 64px);
	align-items: center;
	max-width: none;
	text-align: left;
}

.qc-hero-split .qc-hero-sub {
	margin-left: 0;
}

.qc-hero-split .qc-hero-cta,
.qc-hero-split .qc-hero-chips {
	justify-content: flex-start;
}

.qc-hero-art {
	position: relative;
	min-width: 0;
}

.qc-hero-art svg {
	display: block;
	width: 100%;
	height: auto;
	border-radius: var(--qc-radius);
	box-shadow: var(--qc-shadow);
}

/* poster：通栏大字 */
.qc-hero-poster {
	max-width: none;
	text-align: left;
}

.qc-hero-poster .qc-hero-title {
	max-width: 1000px;
	font-size: clamp(2.6rem, 7.4vw, 5.4rem);
	line-height: 1.06;
	letter-spacing: -0.015em;
}

.qc-hero-poster .qc-hero-sub {
	margin-left: 0;
}

.qc-hero-poster .qc-hero-cta,
.qc-hero-poster .qc-hero-chips {
	justify-content: flex-start;
}

/* ==========================================================================
   5. 数字实力条
   ========================================================================== */

.qc-stats {
	border-block: 1px solid var(--qc-line-faint);
	background: var(--qc-stats-bg, var(--qc-bg-alt));
}

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

.qc-stat {
	text-align: center;
}

.qc-stat-num {
	margin: 0;
	font-family: var(--qc-head-font);
	font-size: clamp(1.7rem, 3vw, 2.3rem);
	font-weight: 800;
	color: var(--qc-accent);
	line-height: 1.2;
}

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

.qc-stat-label {
	margin: 4px 0 0;
	font-size: 0.9rem;
	color: var(--qc-ink-dim);
}

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

.qc-section {
	padding: clamp(58px, 8vw, 104px) 0;
}

.qc-section-alt {
	background: var(--qc-bg-alt);
	border-block: 1px solid var(--qc-line-faint);
}

.qc-section-head {
	max-width: 720px;
	margin: 0 auto clamp(36px, 5vw, 56px);
	text-align: center;
}

.qc-section-kicker {
	margin: 0 0 10px;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.24em;
	color: var(--qc-accent);
}

.qc-section-title {
	margin: 0 0 14px;
	font-size: clamp(1.7rem, 3.6vw, 2.5rem);
	font-weight: 800;
}

.qc-section-sub {
	margin: 0;
	color: var(--qc-ink-dim);
	line-height: 1.95;
}

/* ==========================================================================
   7. 服务卡片
   ========================================================================== */

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

.qc-service-card {
	padding: 30px 26px;
	background: var(--qc-card);
	border: 1px solid var(--qc-line-faint);
	border-radius: var(--qc-radius);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.qc-service-card:hover {
	transform: translateY(-4px);
	border-color: var(--qc-line-soft);
	box-shadow: var(--qc-shadow);
}

.qc-service-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	margin-bottom: 16px;
	border-radius: var(--qc-radius-sm);
	color: var(--qc-accent);
	background: color-mix(in srgb, var(--qc-accent) 12%, transparent);
	border: 1px solid color-mix(in srgb, var(--qc-accent) 26%, transparent);
}

.qc-service-title {
	margin: 0 0 8px;
	font-size: 1.12rem;
	font-weight: 700;
}

.qc-service-text {
	margin: 0;
	font-size: 0.94rem;
	color: var(--qc-ink-dim);
	line-height: 1.85;
}

/* ==========================================================================
   8. 案例
   ========================================================================== */

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

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

.qc-case-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--qc-shadow);
}

.qc-case-art {
	aspect-ratio: 8 / 5;
	overflow: hidden;
	border-bottom: 1px solid var(--qc-line-faint);
}

.qc-case-art svg,
.qc-case-art img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.qc-case-body {
	padding: 20px 22px 24px;
}

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

.qc-tag {
	padding: 3px 11px;
	border-radius: 999px;
	font-size: 0.76rem;
	font-weight: 600;
	color: var(--qc-accent);
	background: color-mix(in srgb, var(--qc-accent) 11%, transparent);
	border: 1px solid color-mix(in srgb, var(--qc-accent) 24%, transparent);
}

.qc-case-title {
	margin: 0 0 6px;
	font-size: 1.06rem;
	font-weight: 700;
	line-height: 1.5;
}

.qc-case-meta {
	margin: 0;
	font-size: 0.86rem;
	color: var(--qc-ink-faint);
}

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

/* ==========================================================================
   9. 流程
   ========================================================================== */

.qc-process {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 18px;
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: step;
}

.qc-process-step {
	position: relative;
	padding: 26px 20px 24px;
	background: var(--qc-card);
	border: 1px solid var(--qc-line-faint);
	border-radius: var(--qc-radius);
}

.qc-step-num {
	display: inline-block;
	margin-bottom: 12px;
	font-family: var(--qc-head-font);
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--qc-accent);
	opacity: 0.9;
}

.qc-step-title {
	margin: 0 0 8px;
	font-size: 1.03rem;
	font-weight: 700;
}

.qc-step-text {
	margin: 0;
	font-size: 0.88rem;
	color: var(--qc-ink-dim);
	line-height: 1.8;
}

/* ==========================================================================
   10. 套餐
   ========================================================================== */

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

.qc-plan-card {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: 32px 28px;
	background: var(--qc-card);
	border: 1px solid var(--qc-line-faint);
	border-radius: var(--qc-radius);
}

.qc-plan-featured {
	border-color: color-mix(in srgb, var(--qc-accent) 55%, transparent);
	box-shadow: var(--qc-shadow);
	background: var(--qc-plan-featured-bg, var(--qc-card));
}

.qc-plan-badge {
	position: absolute;
	top: -13px;
	left: 50%;
	transform: translateX(-50%);
	margin: 0;
	padding: 4px 16px;
	border-radius: 999px;
	background: var(--qc-accent-grad);
	color: var(--qc-accent-ink);
	font-size: 0.78rem;
	font-weight: 700;
	white-space: nowrap;
}

.qc-plan-name {
	margin: 0 0 6px;
	font-size: 1.14rem;
	font-weight: 700;
}

.qc-plan-price {
	margin: 0 0 4px;
	font-family: var(--qc-head-font);
	font-size: 2.1rem;
	font-weight: 800;
	color: var(--qc-accent);
}

.qc-plan-cny {
	font-size: 0.55em;
	margin-right: 2px;
}

.qc-plan-unit {
	font-size: 0.5em;
	margin-left: 4px;
	color: var(--qc-ink-dim);
	font-weight: 600;
}

.qc-plan-for {
	margin: 0 0 18px;
	font-size: 0.88rem;
	color: var(--qc-ink-faint);
}

.qc-plan-list {
	flex: 1 1 auto;
	margin: 0 0 22px;
	padding: 0;
	list-style: none;
}

.qc-plan-list li {
	position: relative;
	padding: 8px 0 8px 26px;
	font-size: 0.94rem;
	color: var(--qc-ink-dim);
	border-bottom: 1px dashed var(--qc-line-faint);
}

.qc-plan-list li:last-child {
	border-bottom: 0;
}

.qc-plan-list li::before {
	content: "";
	position: absolute;
	left: 2px;
	top: 15px;
	width: 14px;
	height: 8px;
	border-left: 2px solid var(--qc-accent);
	border-bottom: 2px solid var(--qc-accent);
	transform: rotate(-45deg) scale(0.86);
}

/* ==========================================================================
   11. 客户之声
   ========================================================================== */

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

.qc-voice-card {
	margin: 0;
	padding: 28px 26px;
	background: var(--qc-card);
	border: 1px solid var(--qc-line-faint);
	border-radius: var(--qc-radius);
}

.qc-voice-text {
	margin: 0 0 16px;
	font-size: 0.97rem;
	line-height: 2;
	color: var(--qc-ink);
}

.qc-voice-who {
	font-size: 0.85rem;
	color: var(--qc-ink-faint);
}

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

/* ==========================================================================
   12. FAQ
   ========================================================================== */

.qc-faq-wrap {
	max-width: 780px;
}

.qc-faq {
	display: grid;
	gap: 12px;
}

.qc-faq-item {
	border: 1px solid var(--qc-line-faint);
	border-radius: var(--qc-radius-sm);
	background: var(--qc-card);
	overflow: hidden;
}

.qc-faq-item[open] {
	border-color: color-mix(in srgb, var(--qc-accent) 45%, transparent);
}

.qc-faq-q {
	position: relative;
	padding: 17px 52px 17px 22px;
	font-weight: 600;
	font-size: 1rem;
	cursor: pointer;
	list-style: none;
}

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

.qc-faq-q::after {
	content: "";
	position: absolute;
	right: 22px;
	top: 50%;
	width: 9px;
	height: 9px;
	border-right: 2px solid var(--qc-accent);
	border-bottom: 2px solid var(--qc-accent);
	transform: translateY(-70%) rotate(45deg);
	transition: transform 0.2s ease;
}

.qc-faq-item[open] .qc-faq-q::after {
	transform: translateY(-30%) rotate(-135deg);
}

.qc-faq-a {
	padding: 0 22px 18px;
	color: var(--qc-ink-dim);
	font-size: 0.95rem;
	line-height: 1.95;
}

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

/* ==========================================================================
   13. 联系 CTA
   ========================================================================== */

.qc-cta-band {
	padding: clamp(58px, 8vw, 104px) 0;
	background: var(--qc-cta-bg, var(--qc-bg-alt));
	border-top: 1px solid var(--qc-line-faint);
}

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

.qc-cta-title {
	margin: 0 0 14px;
	font-size: clamp(1.6rem, 3.4vw, 2.4rem);
	font-weight: 800;
	line-height: 1.3;
}

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

.qc-contact-card {
	padding: 30px 28px;
	background: var(--qc-card);
	border: 1px solid var(--qc-line-soft);
	border-radius: var(--qc-radius);
	box-shadow: var(--qc-shadow);
	text-align: center;
}

.qc-contact-label {
	margin: 0 0 6px;
	font-size: 0.85rem;
	color: var(--qc-ink-faint);
}

.qc-contact-phone {
	display: block;
	margin-bottom: 16px;
	font-family: var(--qc-head-font);
	font-size: clamp(1.6rem, 3vw, 2rem);
	font-weight: 800;
	color: var(--qc-accent);
	letter-spacing: 0.02em;
}

.qc-contact-addr {
	margin: 14px 0 0;
	font-size: 0.85rem;
	color: var(--qc-ink-faint);
}

/* ==========================================================================
   14. 页脚
   ========================================================================== */

.qc-footer {
	padding: clamp(44px, 6vw, 72px) 0 28px;
	background: var(--qc-footer-bg, var(--qc-bg-alt));
	border-top: 1px solid var(--qc-line-faint);
}

.qc-footer-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.3fr);
	gap: 32px;
	margin-bottom: 36px;
}

.qc-footer-logo {
	margin: 0 0 12px;
	font-family: var(--qc-head-font);
	font-size: 1.3rem;
	font-weight: 800;
}

.qc-footer-blurb {
	margin: 0 0 16px;
	font-size: 0.9rem;
	color: var(--qc-ink-dim);
	line-height: 1.9;
}

.qc-footer-contact {
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 0.9rem;
	color: var(--qc-ink-dim);
}

.qc-footer-contact li {
	padding: 3px 0;
}

.qc-footer-contact a {
	color: var(--qc-accent);
	font-weight: 600;
}

.qc-footer-title {
	margin: 0 0 14px;
	font-size: 0.95rem;
	font-weight: 700;
	letter-spacing: 0.06em;
}

.qc-footer-links {
	margin: 0;
	padding: 0;
	list-style: none;
}

.qc-footer-links li {
	padding: 4px 0;
}

.qc-footer-links a {
	font-size: 0.9rem;
	color: var(--qc-ink-dim);
}

.qc-footer-links a:hover {
	color: var(--qc-accent);
}

.qc-footer-legal {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 24px;
	justify-content: space-between;
	padding-top: 20px;
	border-top: 1px solid var(--qc-line-faint);
	font-size: 0.82rem;
	color: var(--qc-ink-faint);
}

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

.qc-footer-legal a {
	color: var(--qc-ink-faint);
}

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

.qc-mobilebar {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 140;
	display: none;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	border-top: 1px solid var(--qc-line-soft);
	background: var(--qc-header-bg);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
}

.qc-mobilebar-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 8px calc(14px + env(safe-area-inset-bottom, 0px));
	font-size: 0.95rem;
	font-weight: 700;
	border: 0;
	cursor: pointer;
}

.qc-mobilebar-tel {
	background: var(--qc-accent-grad);
	color: var(--qc-accent-ink);
}

.qc-mobilebar-tel:hover {
	color: var(--qc-accent-ink);
}

.qc-mobilebar-wx {
	background: transparent;
	color: var(--qc-ink);
}

.qc-toast {
	position: fixed;
	top: 86px;
	left: 50%;
	z-index: 220;
	transform: translateX(-50%) translateY(-8px);
	max-width: min(92vw, 420px);
	padding: 12px 22px;
	border-radius: 999px;
	background: var(--qc-ink);
	color: var(--qc-bg);
	font-size: 0.9rem;
	opacity: 0;
	transition: opacity 0.25s ease, transform 0.25s ease;
	pointer-events: none;
}

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

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

.qc-page-hero {
	padding: clamp(48px, 7vw, 84px) 0 clamp(32px, 5vw, 52px);
	background: var(--qc-hero-bg, var(--qc-bg-alt));
	border-bottom: 1px solid var(--qc-line-faint);
	text-align: center;
}

.qc-page-title {
	margin: 0 0 12px;
	font-size: clamp(1.8rem, 4vw, 2.6rem);
	font-weight: 800;
	line-height: 1.25;
}

.qc-page-sub {
	max-width: 640px;
	margin: 0 auto;
	color: var(--qc-ink-dim);
	line-height: 1.95;
}

.qc-article-meta {
	margin: 10px 0 0;
	font-size: 0.88rem;
	color: var(--qc-ink-faint);
}

.qc-article-body {
	max-width: 800px;
	padding: clamp(36px, 5vw, 56px) 0 clamp(56px, 7vw, 88px);
}

/* 正文排版（wlq 自动发文内容落在这里） */
.qc-prose {
	font-size: 1.02rem;
	line-height: 2;
	color: var(--qc-ink);
}

.qc-prose > * {
	margin: 0 0 1.25em;
}

.qc-prose h2 {
	margin: 1.9em 0 0.8em;
	padding-left: 14px;
	border-left: 4px solid var(--qc-accent);
	font-size: 1.42rem;
}

.qc-prose h3 {
	margin: 1.6em 0 0.7em;
	font-size: 1.2rem;
}

.qc-prose h4 {
	margin: 1.4em 0 0.6em;
	font-size: 1.05rem;
}

.qc-prose ul,
.qc-prose ol {
	padding-left: 1.6em;
}

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

.qc-prose blockquote {
	margin: 1.4em 0;
	padding: 14px 20px;
	border-left: 4px solid var(--qc-accent);
	border-radius: 0 var(--qc-radius-sm) var(--qc-radius-sm) 0;
	background: var(--qc-bg-alt);
	color: var(--qc-ink-dim);
}

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

.qc-prose table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.94rem;
}

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

.qc-prose th {
	background: var(--qc-bg-alt);
	font-weight: 700;
}

.qc-prose img {
	border-radius: var(--qc-radius-sm);
}

.qc-prose code {
	padding: 2px 7px;
	border-radius: 5px;
	background: var(--qc-bg-alt);
	font-size: 0.88em;
}

.qc-prose a {
	text-decoration: underline;
	text-underline-offset: 3px;
}

/* 文章内转化卡 */
.qc-article-cta {
	margin: 40px 0;
	padding: 28px 26px;
	border: 1px solid color-mix(in srgb, var(--qc-accent) 35%, transparent);
	border-radius: var(--qc-radius);
	background: color-mix(in srgb, var(--qc-accent) 7%, var(--qc-bg-alt));
	text-align: center;
}

.qc-article-cta-title {
	margin: 0 0 6px;
	font-size: 1.15rem;
	font-weight: 800;
}

.qc-article-cta-sub {
	margin: 0 0 18px;
	font-size: 0.92rem;
	color: var(--qc-ink-dim);
}

.qc-article-cta-btns {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
}

/* 相关阅读 / 上下篇 */
.qc-related {
	margin-top: 44px;
}

.qc-related-title {
	margin: 0 0 14px;
	font-size: 1.15rem;
}

.qc-related-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.qc-related-list li {
	display: flex;
	justify-content: space-between;
	gap: 18px;
	padding: 11px 0;
	border-bottom: 1px dashed var(--qc-line-faint);
}

.qc-related-list a {
	color: var(--qc-ink);
	min-width: 0;
}

.qc-related-list a:hover {
	color: var(--qc-accent);
}

.qc-related-list span {
	flex: none;
	font-size: 0.84rem;
	color: var(--qc-ink-faint);
}

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

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

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

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

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

.qc-post-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--qc-shadow);
}

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

.qc-post-thumb {
	aspect-ratio: 8 / 5;
	overflow: hidden;
	border-bottom: 1px solid var(--qc-line-faint);
}

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

.qc-post-card-body {
	padding: 18px 20px 22px;
}

.qc-post-date {
	margin: 0 0 6px;
	font-size: 0.8rem;
	color: var(--qc-ink-faint);
}

.qc-post-card-title {
	margin: 0 0 8px;
	font-size: 1.05rem;
	font-weight: 700;
	line-height: 1.5;
	color: var(--qc-ink);
}

.qc-post-card:hover .qc-post-card-title {
	color: var(--qc-accent);
}

.qc-post-card-excerpt {
	margin: 0 0 12px;
	font-size: 0.9rem;
	color: var(--qc-ink-dim);
	line-height: 1.85;
}

.qc-post-more {
	font-size: 0.88rem;
	font-weight: 600;
	color: var(--qc-accent);
}

/* 分页 */
.qc-pagination {
	margin-top: 36px;
	text-align: center;
}

.qc-pagination .page-numbers {
	display: inline-block;
	min-width: 38px;
	margin: 0 3px;
	padding: 8px 12px;
	border: 1px solid var(--qc-line-soft);
	border-radius: var(--qc-radius-sm);
	color: var(--qc-ink-dim);
	font-size: 0.92rem;
}

.qc-pagination .page-numbers.current,
.qc-pagination .page-numbers:hover {
	border-color: var(--qc-accent);
	color: var(--qc-accent);
}

/* ==========================================================================
   18. 搜索 / 空状态 / 404
   ========================================================================== */

.qc-searchform {
	display: flex;
	gap: 10px;
	max-width: 440px;
	margin: 0 auto;
}

.qc-search-input {
	flex: 1 1 auto;
	min-width: 0;
	padding: 12px 16px;
	border: 1.4px solid var(--qc-line-soft);
	border-radius: var(--qc-radius-sm);
	background: var(--qc-surface);
	color: var(--qc-ink);
	font-size: 0.95rem;
}

.qc-search-input:focus {
	outline: 2px solid color-mix(in srgb, var(--qc-accent) 55%, transparent);
	border-color: var(--qc-accent);
}

.qc-search-submit {
	flex: none;
}

.qc-empty {
	max-width: 520px;
	margin: 0 auto;
	text-align: center;
}

.qc-empty-title {
	margin: 0 0 8px;
	font-size: 1.3rem;
	font-weight: 800;
}

.qc-empty-sub {
	margin: 0 0 22px;
	color: var(--qc-ink-dim);
}

.qc-empty .qc-searchform {
	margin-bottom: 20px;
}

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

.qc-error-code {
	margin: 0 0 10px;
	font-family: var(--qc-head-font);
	font-size: clamp(4.4rem, 12vw, 7.5rem);
	font-weight: 800;
	line-height: 1;
	color: var(--qc-ink);
}

.qc-error-actions {
	display: grid;
	gap: 20px;
	justify-items: center;
	margin-top: 28px;
}

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

.alignleft {
	float: left;
	margin: 0.4em 1.4em 1em 0;
}

.alignright {
	float: right;
	margin: 0.4em 0 1em 1.4em;
}

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

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

.wp-caption-text,
.gallery-caption {
	font-size: 0.85rem;
	color: var(--qc-ink-faint);
	text-align: center;
}

.sticky {
	display: block;
}

.bypostauthor {
	display: block;
}

/* ==========================================================================
   20. 响应式
   ========================================================================== */

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

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

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

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

@media (max-width: 900px) {
	.qc-nav {
		position: fixed;
		top: 72px;
		left: 0;
		right: 0;
		z-index: 130;
		display: none;
		padding: 10px 4vw 18px;
		background: var(--qc-header-bg);
		backdrop-filter: blur(16px);
		-webkit-backdrop-filter: blur(16px);
		border-bottom: 1px solid var(--qc-line-soft);
		box-shadow: 0 24px 40px rgba(0, 0, 0, 0.18);
	}

	.qc-nav-open .qc-nav {
		display: block;
	}

	.qc-menu {
		flex-direction: column;
		gap: 2px;
	}

	.qc-menu a {
		display: block;
		padding: 12px 10px;
		font-size: 1.02rem;
	}

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

	.qc-header-cta {
		display: none;
	}

	.qc-hero-split {
		grid-template-columns: minmax(0, 1fr);
		text-align: center;
	}

	.qc-hero-split .qc-hero-cta,
	.qc-hero-split .qc-hero-chips {
		justify-content: center;
	}

	.qc-hero-split .qc-hero-sub {
		margin-inline: auto;
	}

	.qc-hero-art {
		max-width: 560px;
		margin: 0 auto;
	}

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

@media (max-width: 720px) {
	body {
		padding-bottom: 62px; /* 给移动咨询条留位 */
	}

	.qc-mobilebar {
		display: grid;
	}

	.qc-stats-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 14px;
		padding: 24px 0;
	}

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

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

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

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

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

	.qc-footer-legal {
		justify-content: center;
		text-align: center;
	}
}

@media (max-width: 560px) {
	.qc-process {
		grid-template-columns: minmax(0, 1fr);
	}

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

	.qc-searchform {
		flex-direction: column;
	}
}

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

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

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

/* ==========================================================================
   22. 主题皮肤（栖迟民宿 专属视觉）
   ========================================================================== */

/* 莫兰迪旅居 */
.qc-hero { background: var(--qc-bg); }
.qc-hero-title { font-weight: 600; }
.qc-hero-title em { font-style: italic; color: var(--qc-accent-deep); }
.qc-hero .qc-kicker { letter-spacing: 0.3em; color: var(--qc-accent-deep); }
.qc-hero .qc-kicker::before { content: "⌂ "; color: var(--qc-sage); letter-spacing: 0; }
.qc-hero-art svg { box-shadow: 0 24px 52px rgba(154, 111, 100, 0.18); }
.qc-chip, .qc-hero-chips .qc-chip { border-radius: 999px; font-weight: 500; background: var(--qc-surface); }

.qc-stats { background: var(--qc-surface); border-block: 1px solid var(--qc-line-soft); }
.qc-stats .qc-stat-num { color: var(--qc-accent-deep); font-family: var(--qc-head-font); }
.qc-stats .qc-stat-num span { color: var(--qc-sage); }

.qc-section-kicker { letter-spacing: 0.28em; color: var(--qc-accent-deep); }
.qc-section-kicker::before { content: "⌂ "; color: var(--qc-sage); }
.qc-section-title { font-style: italic; font-weight: 600; }

.qc-service-card { border: 1px solid var(--qc-line-soft); border-radius: var(--qc-radius); background: var(--qc-surface); transition: transform 0.2s ease, box-shadow 0.2s ease; }
.qc-service-card:hover { transform: translateY(-3px); box-shadow: var(--qc-shadow); }
.qc-service-icon { border-radius: 12px; color: var(--qc-accent-deep); background: rgba(185, 141, 130, 0.12); border: 1px solid rgba(185, 141, 130, 0.3); }
.qc-services-grid > .qc-service-card:nth-child(3n) .qc-service-icon { color: #6f7d6c; background: rgba(138, 152, 135, 0.14); border-color: rgba(138, 152, 135, 0.36); }

.qc-case-card { border: 1px solid var(--qc-line-soft); border-radius: var(--qc-radius); overflow: hidden; }
.qc-case-meta { font-family: var(--qc-head-font); font-style: italic; font-size: 0.8rem; }
.qc-tag { border-radius: 999px; background: rgba(138, 152, 135, 0.14); border-color: rgba(138, 152, 135, 0.4); color: #647062; }

.qc-process-step { border: 1px solid var(--qc-line-soft); border-radius: var(--qc-radius); background: var(--qc-surface); }
.qc-step-num { font-family: var(--qc-head-font); font-style: italic; color: var(--qc-accent-deep); }

.qc-plan-card { background: var(--qc-surface); border-radius: var(--qc-radius); }
.qc-plan-featured { border: 1.5px solid var(--qc-accent); box-shadow: 0 24px 50px rgba(154, 111, 100, 0.16); }
.qc-plan-price { font-family: var(--qc-head-font); }
.qc-plan-badge { background: var(--qc-sage); color: #f6f1e9; }

.qc-voice-card { border: 1px solid var(--qc-line-soft); border-top: 3px solid var(--qc-sage); border-radius: var(--qc-radius); background: var(--qc-surface); }
.qc-voice-text { font-family: var(--qc-head-font); font-style: italic; }

.qc-cta-band { background: var(--qc-accent-deep); background-image: radial-gradient(circle at 84% 22%, rgba(138, 152, 135, 0.26), transparent 44%); }
.qc-cta-band .qc-cta-title { color: #f6f1e9; font-style: italic; }
.qc-cta-band .qc-cta-sub { color: rgba(246, 241, 233, 0.82); }
.qc-cta-band .qc-kicker { color: #d6c4bc; }
.qc-contact-card { background: #f6f1e9; border: 0; box-shadow: 0 30px 60px rgba(50, 44, 38, 0.32); }
.qc-contact-phone { font-family: var(--qc-head-font); color: var(--qc-accent-deep); }

.qc-footer { background: #35302a; }
.qc-footer, .qc-footer .qc-footer-blurb, .qc-footer .qc-footer-contact, .qc-footer .qc-footer-links a, .qc-footer .qc-footer-legal, .qc-footer .qc-footer-legal a { color: rgba(239, 233, 223, 0.66); }
.qc-footer .qc-footer-title, .qc-footer .qc-footer-logo { color: #efe9df; }
.qc-footer .qc-footer-links a:hover, .qc-footer .qc-footer-contact a { color: #d6c4bc; }
.qc-footer-legal { border-top-color: rgba(239, 233, 223, 0.14); }
.qc-footer-logo .qc-accent-text { color: #d6c4bc; }
