/* ==============================================================
   ZEROMETRE THEME — main.css
   Aesthetic: Editorial Concert Hall · 黑金舞台
   ============================================================== */

/* =============== TOKENS ====================================== */
:root {
	/* Color */
	--zm-bg:        #0a0a0f;
	--zm-bg-2:      #121218;
	--zm-bg-3:      #1a1a22;
	--zm-bg-4:      #22222c;
	--zm-ink:       #f5efe1;
	--zm-ink-2:     #b8b4a8;
	--zm-ink-3:     #767264;
	--zm-accent:    #c9a961;
	--zm-accent-2:  #e8c987;
	--zm-red:       #a8232a;
	--zm-line:      rgba(245, 239, 225, 0.12);
	--zm-line-2:    rgba(245, 239, 225, 0.06);

	/* Typography */
	--font-display:    'Cormorant Garamond', 'Noto Serif SC', Georgia, serif;
	--font-display-cn: 'Noto Serif SC', 'Cormorant Garamond', serif;
	--font-body:       'Noto Sans SC', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
	--font-mono:       'Space Mono', 'SF Mono', Menlo, monospace;

	/* Spacing */
	--gutter:    clamp(20px, 4vw, 60px);
	--section:   clamp(80px, 10vw, 160px);
	--max-w:     1480px;

	/* Effects */
	--ease:      cubic-bezier(0.6, 0.05, 0.2, 1);
	--ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
}

/* =============== RESET / BASE ================================ */
*, *::before, *::after { box-sizing: border-box; }

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

body {
	margin: 0;
	background: var(--zm-bg);
	color: var(--zm-ink);
	font-family: var(--font-body);
	font-weight: 400;
	font-size: 16px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
	text-rendering: optimizeLegibility;
}

/* Subtle film grain overlay everywhere */
body::before {
	content: "";
	position: fixed;
	inset: 0;
	pointer-events: none;
	opacity: 0.025;
	z-index: 9999;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/></filter><rect width='200' height='200' filter='url(%23n)' opacity='1'/></svg>");
	mix-blend-mode: overlay;
}

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

a {
	color: inherit;
	text-decoration: none;
	transition: color .35s var(--ease), opacity .35s var(--ease);
}

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

::selection {
	background: var(--zm-accent);
	color: var(--zm-bg);
}

/* Scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--zm-bg); }
::-webkit-scrollbar-thumb { background: var(--zm-bg-4); border-radius: 0; }
::-webkit-scrollbar-thumb:hover { background: var(--zm-accent); }

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

.skip-link {
	position: absolute;
	top: -100px;
	left: 0;
	background: var(--zm-accent);
	color: var(--zm-bg);
	padding: 8px 16px;
	z-index: 100000;
	font-size: 14px;
}
.skip-link:focus { top: 0; }


/* =============== TYPOGRAPHY ================================== */
h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-display-cn);
	font-weight: 500;
	line-height: 1.15;
	letter-spacing: -0.01em;
	color: var(--zm-ink);
	margin: 0 0 0.6em;
}
h1 em, h2 em, h3 em, h4 em {
	font-style: italic;
	font-family: var(--font-display);
	font-weight: 500;
	color: var(--zm-accent);
}
p { margin: 0 0 1em; color: var(--zm-ink-2); }
strong { color: var(--zm-ink); font-weight: 500; }


/* =============== MARQUEE (top scrolling banner) ============== */
.marquee {
	background: var(--zm-bg);
	border-bottom: 1px solid var(--zm-line);
	padding: 10px 0;
	overflow: hidden;
	position: relative;
	z-index: 60;
}
.marquee__track {
	display: inline-flex;
	white-space: nowrap;
	gap: 30px;
	animation: marquee 60s linear infinite;
	font-family: var(--font-mono);
	font-size: 12px;
	letter-spacing: 0.18em;
	color: var(--zm-ink-3);
	text-transform: uppercase;
	will-change: transform;
}
.marquee__sep { color: var(--zm-accent); }
@keyframes marquee {
	from { transform: translateX(0); }
	to   { transform: translateX(-50%); }
}


/* =============== SITE HEADER ================================= */
.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(10, 10, 15, 0.85);
	backdrop-filter: blur(20px) saturate(140%);
	-webkit-backdrop-filter: blur(20px) saturate(140%);
	border-bottom: 1px solid var(--zm-line-2);
	transition: padding .35s var(--ease), background .35s var(--ease);
}
.site-header.is-scrolled {
	background: rgba(10, 10, 15, 0.95);
	border-bottom-color: var(--zm-line);
}
.site-header__inner {
	max-width: var(--max-w);
	margin: 0 auto;
	padding: 18px var(--gutter);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
}
.site-branding__link {
	display: flex;
	align-items: center;
	gap: 14px;
	color: var(--zm-ink);
}
.site-branding__mark {
	color: var(--zm-accent);
	transition: transform .6s var(--ease);
}
.site-branding__link:hover .site-branding__mark { transform: rotate(180deg); }
.site-branding__text { display: flex; flex-direction: column; line-height: 1; }
.site-branding__cn {
	font-family: var(--font-display-cn);
	font-size: 18px;
	font-weight: 500;
	letter-spacing: 0.04em;
}
.site-branding__en {
	font-family: var(--font-mono);
	font-size: 9px;
	letter-spacing: 0.25em;
	color: var(--zm-ink-3);
	margin-top: 4px;
	text-transform: uppercase;
}
.custom-logo { max-height: 50px; width: auto; }

/* Primary nav */
.main-navigation { display: flex; align-items: center; }
.primary-menu {
	list-style: none;
	margin: 0; padding: 0;
	display: flex;
	gap: 6px;
	align-items: center;
}
.primary-menu li > a {
	display: block;
	padding: 8px 16px;
	font-size: 14px;
	font-weight: 400;
	color: var(--zm-ink-2);
	letter-spacing: 0.04em;
	position: relative;
}
.primary-menu li > a::after {
	content: "";
	position: absolute;
	left: 16px; right: 16px;
	bottom: 4px; height: 1px;
	background: var(--zm-accent);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .4s var(--ease);
}
.primary-menu li > a:hover,
.primary-menu li.current-menu-item > a,
.primary-menu li.current_page_item > a { color: var(--zm-ink); }
.primary-menu li > a:hover::after,
.primary-menu li.current-menu-item > a::after { transform: scaleX(1); }

/* Sub-menus */
.primary-menu .sub-menu {
	position: absolute;
	top: 100%; left: 0;
	background: var(--zm-bg-2);
	border: 1px solid var(--zm-line);
	min-width: 220px;
	padding: 8px;
	list-style: none;
	margin: 0;
	opacity: 0; visibility: hidden;
	transform: translateY(8px);
	transition: all .3s var(--ease);
	z-index: 50;
}
.primary-menu li { position: relative; }
.primary-menu li:hover > .sub-menu {
	opacity: 1; visibility: visible; transform: translateY(0);
}

/* Header CTA phone */
.cta-phone {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 18px;
	border: 1px solid var(--zm-accent);
	color: var(--zm-accent);
	font-family: var(--font-mono);
	font-size: 12px;
	letter-spacing: 0.1em;
	transition: all .35s var(--ease);
}
.cta-phone:hover {
	background: var(--zm-accent);
	color: var(--zm-bg);
}

/* Mobile menu toggle */
.menu-toggle {
	display: none;
	width: 40px; height: 40px;
	background: none;
	border: 1px solid var(--zm-line);
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
	padding: 0;
	z-index: 100;
	position: relative;
}
.menu-toggle__line {
	display: block;
	width: 18px; height: 1px;
	background: var(--zm-ink);
	transition: all .35s var(--ease);
}
.menu-toggle.is-active .menu-toggle__line:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.is-active .menu-toggle__line:nth-child(2) { opacity: 0; }
.menu-toggle.is-active .menu-toggle__line:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }


/* =============== BUTTONS ===================================== */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 24px;
	font-family: var(--font-body);
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.06em;
	border: 1px solid transparent;
	cursor: pointer;
	transition: all .35s var(--ease);
	position: relative;
	overflow: hidden;
}
.btn--lg { padding: 18px 32px; font-size: 15px; }
.btn--primary {
	background: var(--zm-accent);
	color: var(--zm-bg);
	border-color: var(--zm-accent);
}
.btn--primary:hover {
	background: var(--zm-accent-2);
	border-color: var(--zm-accent-2);
	transform: translateY(-2px);
}
.btn--ghost {
	background: transparent;
	color: var(--zm-ink);
	border-color: var(--zm-line);
}
.btn--ghost:hover {
	border-color: var(--zm-accent);
	color: var(--zm-accent);
}
.btn--outline {
	background: transparent;
	color: var(--zm-ink);
	border: 1px solid var(--zm-line);
	padding: 16px 32px;
}
.btn--outline:hover {
	background: var(--zm-ink);
	color: var(--zm-bg);
	border-color: var(--zm-ink);
}


/* =============== HERO ======================================== */
.hero {
	min-height: 92vh;
	min-height: 92dvh;
	position: relative;
	display: flex;
	align-items: center;
	overflow: hidden;
	padding: var(--section) var(--gutter) calc(var(--section) - 40px);
	background: var(--zm-bg);
}

.hero__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
}
.hero__bg::before {
	content: "";
	position: absolute;
	inset: -10%;
	background:
		radial-gradient(ellipse at 20% 30%, rgba(201, 169, 97, 0.15), transparent 50%),
		radial-gradient(ellipse at 80% 70%, rgba(168, 35, 42, 0.08), transparent 60%),
		radial-gradient(ellipse at 50% 100%, rgba(201, 169, 97, 0.06), transparent 70%);
	filter: blur(0px);
}
.hero__waveform {
	position: absolute;
	bottom: 6%;
	left: 0;
	width: 100%;
	height: 32%;
	opacity: 0.55;
	color: var(--zm-accent);
	filter: drop-shadow(0 0 18px rgba(201, 169, 97, 0.18));
	pointer-events: none;
}

/* Add a subtle gradient mask so waveform fades into edges */
.hero__waveform::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, var(--zm-bg) 0%, transparent 8%, transparent 92%, var(--zm-bg) 100%);
	pointer-events: none;
}

.hero__inner {
	position: relative;
	z-index: 1;
	max-width: var(--max-w);
	margin: 0 auto;
	width: 100%;
}

.hero__meta {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 40px;
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.25em;
	color: var(--zm-accent);
	text-transform: uppercase;
	opacity: 0;
	animation: hero-fade-in 0.8s var(--ease-out) 0.2s forwards;
}
.hero__meta-line {
	width: 60px; height: 1px;
	background: var(--zm-accent);
}

.hero__title {
	font-family: var(--font-display-cn);
	font-size: clamp(48px, 9vw, 140px);
	font-weight: 500;
	line-height: 0.98;
	letter-spacing: -0.025em;
	margin: 0 0 50px;
	color: var(--zm-ink);
}
.hero__title-line {
	display: block;
	overflow: hidden;
}
.hero__title-line > * {
	display: inline-block;
	transform: translateY(110%);
	animation: hero-rise 1.1s var(--ease-out) forwards;
}
.hero__title-line--1 { animation-delay: 0.3s; }
.hero__title-line--1 > *,
.hero__title-line--2 > *,
.hero__title-line--3 > * { display: inline-block; transform: translateY(110%); animation: hero-rise 1.1s var(--ease-out) forwards; }
.hero__title-line--1 > * { animation-delay: 0.4s; }
.hero__title-line--2 { display: flex; align-items: baseline; gap: 0.3em; }
.hero__title-line--2 em {
	font-family: var(--font-display);
	font-style: italic;
	color: var(--zm-accent);
	font-weight: 500;
	animation-delay: 0.55s;
}
.hero__title-line--3 > * { animation-delay: 0.7s; }
.hero__title-flourish {
	width: 0.7em;
	height: 0.16em;
	color: var(--zm-accent);
	animation-delay: 0.85s;
	transform-origin: left;
}

@keyframes hero-rise {
	to { transform: translateY(0); }
}
@keyframes hero-fade-in {
	to { opacity: 1; }
}

.hero__lede {
	max-width: 580px;
	font-size: clamp(15px, 1.3vw, 18px);
	line-height: 1.75;
	color: var(--zm-ink-2);
	margin-bottom: 50px;
	opacity: 0;
	animation: hero-fade-in 0.9s var(--ease-out) 0.95s forwards;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-bottom: 80px;
	opacity: 0;
	animation: hero-fade-in 0.9s var(--ease-out) 1.1s forwards;
}

.hero__stats {
	display: flex;
	gap: clamp(40px, 6vw, 90px);
	padding-top: 40px;
	border-top: 1px solid var(--zm-line);
	opacity: 0;
	animation: hero-fade-in 0.9s var(--ease-out) 1.3s forwards;
}
.stat { display: flex; flex-direction: column; }
.stat__num {
	font-family: var(--font-display);
	font-size: clamp(36px, 4vw, 56px);
	font-weight: 500;
	color: var(--zm-accent);
	line-height: 1;
}
.stat__num::after {
	content: "+";
	font-size: 0.6em;
	margin-left: 4px;
	color: var(--zm-accent-2);
	vertical-align: super;
}
.stat__label {
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.18em;
	color: var(--zm-ink-3);
	text-transform: uppercase;
	margin-top: 8px;
}

/* Vertical Chinese characters decoration */
.hero__vertical {
	position: absolute;
	right: var(--gutter);
	top: 50%;
	transform: translateY(-50%);
	writing-mode: vertical-rl;
	font-family: var(--font-display-cn);
	font-size: 14px;
	letter-spacing: 0.5em;
	color: var(--zm-ink-3);
	z-index: 1;
	opacity: 0;
	animation: hero-fade-in 0.9s var(--ease-out) 1.5s forwards;
}

/* Scroll indicator */
.hero__scroll {
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	color: var(--zm-ink-3);
	font-family: var(--font-mono);
	font-size: 10px;
	letter-spacing: 0.3em;
	opacity: 0;
	animation: hero-fade-in 0.9s var(--ease-out) 1.7s forwards;
}
.hero__scroll-line {
	width: 1px; height: 40px;
	background: linear-gradient(to bottom, var(--zm-accent), transparent);
	position: relative;
	overflow: hidden;
}
.hero__scroll-line::after {
	content: "";
	position: absolute;
	top: 0; left: 0;
	width: 100%; height: 50%;
	background: var(--zm-accent);
	animation: scroll-indicate 2s var(--ease-out) infinite;
}
@keyframes scroll-indicate {
	0% { transform: translateY(-100%); }
	100% { transform: translateY(200%); }
}


/* =============== SECTION HEADERS ============================= */
.section-header {
	max-width: 800px;
	margin-bottom: clamp(60px, 8vw, 100px);
}
.section-header--split {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	grid-template-areas:
		"eyebrow desc"
		"title   desc";
	grid-template-rows: auto 1fr;
	gap: 24px 80px;
	max-width: var(--max-w);
	align-items: end;
}
.section-header--split .section-header__eyebrow { grid-area: eyebrow; margin-bottom: 0; }
.section-header--split .section-header__title { grid-area: title; margin-bottom: 0; }
.section-header--split .section-header__desc {
	grid-area: desc;
	align-self: end;
	max-width: 460px;
	padding-bottom: 8px; /* baseline align with title bottom */
}
@media (max-width: 900px) {
	.section-header--split {
		grid-template-columns: 1fr;
		grid-template-areas: "eyebrow" "title" "desc";
		gap: 18px;
	}
}
.section-header__eyebrow {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 28px;
	font-family: var(--font-mono);
	font-size: 12px;
	letter-spacing: 0.22em;
	color: var(--zm-accent);
	text-transform: uppercase;
}
.section-header__num {
	font-family: var(--font-display);
	font-style: italic;
	font-size: 22px;
	color: var(--zm-accent);
}
.section-header__label::before {
	content: "—";
	margin-right: 14px;
	color: var(--zm-ink-3);
}
.section-header__title {
	font-family: var(--font-display-cn);
	font-size: clamp(36px, 5.5vw, 78px);
	line-height: 1.05;
	font-weight: 500;
	margin-bottom: 24px;
}
.section-header__title em {
	font-family: var(--font-display);
	font-style: italic;
	color: var(--zm-accent);
}
.section-header__desc {
	font-size: 16px;
	color: var(--zm-ink-2);
	line-height: 1.7;
	max-width: 480px;
}


/* =============== SERVICES ==================================== */
.services {
	padding: var(--section) var(--gutter);
	background: var(--zm-bg);
	position: relative;
}
.services::before {
	content: "";
	position: absolute;
	top: 0; left: 0; right: 0; height: 1px;
	background: var(--zm-line);
}
.services__inner {
	max-width: var(--max-w);
	margin: 0 auto;
}

.services__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
	border: 1px solid var(--zm-line);
}
.service-card {
	display: flex;
	flex-direction: column;
	padding: 50px 40px;
	border-right: 1px solid var(--zm-line);
	color: var(--zm-ink);
	position: relative;
	overflow: hidden;
	transition: background .5s var(--ease);
}
.service-card:last-child { border-right: none; }
.service-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 0%, rgba(201, 169, 97, 0.08) 100%);
	opacity: 0;
	transition: opacity .5s var(--ease);
}
.service-card:hover {
	background: var(--zm-bg-2);
}
.service-card:hover::before { opacity: 1; }

.service-card__top {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 60px;
	position: relative;
	z-index: 1;
}
.service-card__num {
	font-family: var(--font-display);
	font-style: italic;
	font-size: 80px;
	font-weight: 500;
	line-height: 1;
	color: var(--zm-accent);
	opacity: 0.85;
}
.service-card__icon {
	color: var(--zm-accent);
	width: 50px; height: 50px;
	transition: transform .6s var(--ease);
}
.service-card:hover .service-card__icon {
	transform: rotate(360deg) scale(1.1);
}
.service-card__icon svg { width: 100%; height: 100%; }

.service-card__title {
	margin-bottom: 16px;
	position: relative;
	z-index: 1;
}
.service-card__cn {
	display: block;
	font-family: var(--font-display-cn);
	font-size: 32px;
	font-weight: 500;
	margin-bottom: 6px;
	letter-spacing: 0.02em;
}
.service-card__en {
	display: block;
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.2em;
	color: var(--zm-ink-3);
	text-transform: uppercase;
}
.service-card__desc {
	color: var(--zm-ink-2);
	margin-bottom: 30px;
	flex: 1;
	position: relative;
	z-index: 1;
	line-height: 1.75;
}
.service-card__more {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--font-mono);
	font-size: 12px;
	letter-spacing: 0.15em;
	color: var(--zm-accent);
	text-transform: uppercase;
	position: relative;
	z-index: 1;
}
.service-card__more svg {
	transition: transform .35s var(--ease);
}
.service-card:hover .service-card__more svg {
	transform: translateX(6px);
}


/* =============== CASES ======================================= */
.cases {
	padding: var(--section) var(--gutter);
	background: var(--zm-bg-2);
	position: relative;
}
.cases__inner {
	max-width: var(--max-w);
	margin: 0 auto;
}

.cases__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-auto-rows: 280px;
	gap: 20px;
}
.case-card {
	position: relative;
	overflow: hidden;
	background: var(--zm-bg-3);
	grid-column: span 1;
	grid-row: span 1;
}
.case-card--lg { grid-column: span 2; grid-row: span 2; }
.case-card--wide { grid-column: span 2; }

.case-card__link {
	display: block;
	height: 100%;
	position: relative;
	color: var(--zm-ink);
}
.case-card__media {
	position: relative;
	height: 100%;
	overflow: hidden;
}
.case-card__img,
.case-card__media img {
	width: 100%; height: 100%;
	object-fit: cover;
	transition: transform 1.2s var(--ease);
	filter: grayscale(40%) brightness(0.85);
}
.case-card:hover .case-card__media img,
.case-card:hover .case-card__img {
	transform: scale(1.06);
	filter: grayscale(0%) brightness(1);
}
.case-card__placeholder {
	width: 100%; height: 100%;
	background:
		linear-gradient(135deg, var(--zm-bg-3) 0%, var(--zm-bg-4) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--zm-ink-3);
}
.case-card__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 30%, rgba(10, 10, 15, 0.95) 100%);
	pointer-events: none;
}

.case-card__content {
	position: absolute;
	bottom: 0; left: 0; right: 0;
	padding: 30px 28px;
	z-index: 2;
}
.case-card__date {
	display: inline-block;
	font-family: var(--font-mono);
	font-size: 10px;
	letter-spacing: 0.2em;
	color: var(--zm-accent);
	margin-bottom: 12px;
	text-transform: uppercase;
}
.case-card__title {
	font-family: var(--font-display-cn);
	font-size: clamp(18px, 1.6vw, 24px);
	font-weight: 500;
	line-height: 1.3;
	margin: 0 0 14px;
	color: var(--zm-ink);
}
.case-card--lg .case-card__title { font-size: clamp(24px, 2.2vw, 36px); }
.case-card__cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.18em;
	color: var(--zm-ink-2);
	text-transform: uppercase;
	opacity: 0;
	transform: translateY(10px);
	transition: all .4s var(--ease);
}
.case-card:hover .case-card__cta {
	opacity: 1;
	transform: translateY(0);
}

.cases__more {
	margin-top: 60px;
	text-align: center;
}


/* =============== QUOTE SECTION =============================== */
.quote-section {
	padding: var(--section) var(--gutter);
	background: var(--zm-bg);
	text-align: center;
	position: relative;
	overflow: hidden;
}
.quote-section__inner {
	max-width: 1000px;
	margin: 0 auto;
	position: relative;
}
.quote-mark {
	position: absolute;
	top: -80px;
	left: 50%;
	transform: translateX(-50%);
	font-family: var(--font-display);
	font-size: 280px;
	font-weight: 500;
	line-height: 1;
	color: var(--zm-accent);
	opacity: 0.15;
	pointer-events: none;
	font-style: italic;
}
.quote-block {
	margin: 0;
	position: relative;
	z-index: 1;
}
.quote-block__text {
	font-family: var(--font-display-cn);
	font-size: clamp(24px, 3.5vw, 48px);
	font-weight: 400;
	line-height: 1.4;
	color: var(--zm-ink);
	margin-bottom: 30px;
	letter-spacing: 0.01em;
}
.quote-block__attr {
	font-family: var(--font-mono);
	font-size: 12px;
	letter-spacing: 0.25em;
	color: var(--zm-accent);
	text-transform: uppercase;
}
.quote-section__deco {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 60px;
}
.quote-section__deco span {
	width: 4px; height: 4px;
	background: var(--zm-accent);
	border-radius: 50%;
	opacity: 0.5;
	animation: pulse-dot 2s ease-in-out infinite;
}
.quote-section__deco span:nth-child(2) { animation-delay: 0.2s; }
.quote-section__deco span:nth-child(3) { animation-delay: 0.4s; }
.quote-section__deco span:nth-child(4) { animation-delay: 0.6s; }
.quote-section__deco span:nth-child(5) { animation-delay: 0.8s; }
@keyframes pulse-dot {
	0%, 100% { opacity: 0.3; transform: scale(1); }
	50% { opacity: 1; transform: scale(1.4); }
}


/* =============== NEWS ======================================== */
.news {
	padding: var(--section) var(--gutter);
	background: var(--zm-bg-2);
}
.news__inner { max-width: var(--max-w); margin: 0 auto; }

.news__list {
	border-top: 1px solid var(--zm-line);
}
.news-item {
	border-bottom: 1px solid var(--zm-line);
	transition: background .35s var(--ease);
}
.news-item:hover { background: var(--zm-bg-3); }
.news-item__link {
	display: grid;
	grid-template-columns: 180px 1fr 60px;
	gap: 40px;
	padding: 40px 24px;
	align-items: start;
	color: var(--zm-ink);
}
.news-item__date {
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.news-item__day {
	font-family: var(--font-display);
	font-style: italic;
	font-size: 56px;
	line-height: 1;
	color: var(--zm-accent);
	font-weight: 500;
}
.news-item__month-year {
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.22em;
	color: var(--zm-ink-3);
	text-transform: uppercase;
}
.news-item__title {
	font-family: var(--font-display-cn);
	font-size: clamp(20px, 2vw, 28px);
	font-weight: 500;
	margin: 0 0 12px;
	line-height: 1.3;
	transition: color .35s var(--ease);
}
.news-item:hover .news-item__title { color: var(--zm-accent); }
.news-item__excerpt {
	margin: 0;
	color: var(--zm-ink-2);
	line-height: 1.7;
	font-size: 15px;
	max-width: 720px;
}
.news-item__arrow {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	color: var(--zm-ink-3);
	transition: all .35s var(--ease);
}
.news-item:hover .news-item__arrow {
	color: var(--zm-accent);
	transform: translateX(8px);
}
.news__more {
	margin-top: 60px;
	text-align: center;
}


/* =============== CTA SECTION ================================= */
.cta-section {
	padding: var(--section) var(--gutter);
	background: var(--zm-bg);
	text-align: center;
	position: relative;
	overflow: hidden;
}
.cta-section__inner {
	max-width: 900px;
	margin: 0 auto;
	position: relative;
}
.cta-section__deco {
	position: absolute;
	top: 50%; left: -10%; right: -10%;
	transform: translateY(-50%);
	color: var(--zm-accent);
	opacity: 0.12;
	z-index: 0;
	pointer-events: none;
}
.cta-section__deco svg { width: 120%; height: 200px; }
.cta-section__eyebrow {
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.25em;
	color: var(--zm-accent);
	margin-bottom: 30px;
	text-transform: uppercase;
	position: relative; z-index: 1;
}
.cta-section__title {
	font-family: var(--font-display-cn);
	font-size: clamp(40px, 6vw, 88px);
	font-weight: 500;
	line-height: 1.05;
	margin-bottom: 30px;
	position: relative; z-index: 1;
}
.cta-section__title em {
	font-family: var(--font-display);
	font-style: italic;
	color: var(--zm-accent);
}
.cta-section__desc {
	font-size: 16px;
	color: var(--zm-ink-2);
	margin-bottom: 50px;
	line-height: 1.75;
	position: relative; z-index: 1;
}
.cta-section__actions {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 14px;
	position: relative; z-index: 1;
}


/* =============== PAGE HERO (interior pages) ================== */
.page-hero {
	padding: 120px var(--gutter) 80px;
	background: var(--zm-bg);
	position: relative;
	border-bottom: 1px solid var(--zm-line);
}
.page-hero__inner {
	max-width: var(--max-w);
	margin: 0 auto;
}
.page-hero__eyebrow {
	display: inline-block;
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.25em;
	color: var(--zm-accent);
	text-transform: uppercase;
	margin-bottom: 24px;
}
.page-hero__title {
	font-family: var(--font-display-cn);
	font-size: clamp(40px, 6vw, 84px);
	font-weight: 500;
	line-height: 1.05;
	margin: 0 0 16px;
	letter-spacing: -0.01em;
}
.page-hero__title em {
	font-family: var(--font-display);
	font-style: italic;
	color: var(--zm-accent);
}
.page-hero__desc {
	color: var(--zm-ink-2);
	max-width: 720px;
	font-size: 16px;
	line-height: 1.7;
	margin-top: 16px;
}
.page-hero__search { margin-top: 30px; max-width: 520px; }


/* =============== PAGE / SINGLE CONTENT ======================= */
.page-content {
	padding: 80px var(--gutter) var(--section);
	background: var(--zm-bg);
}
.page-content__inner {
	max-width: 800px;
	margin: 0 auto;
}
.page-content__media {
	margin: 0 0 50px;
	border: 1px solid var(--zm-line);
}
.page-content__media img { width: 100%; }

.entry-content {
	font-size: 16px;
	line-height: 1.85;
	color: var(--zm-ink-2);
}
.entry-content > * + * { margin-top: 1.4em; }
.entry-content h2 {
	font-size: clamp(24px, 3vw, 36px);
	margin: 60px 0 24px;
	color: var(--zm-ink);
	font-weight: 500;
}
.entry-content h3 {
	font-size: clamp(20px, 2vw, 26px);
	margin: 40px 0 16px;
	color: var(--zm-ink);
}
.entry-content a {
	color: var(--zm-accent);
	border-bottom: 1px solid currentColor;
	transition: opacity .3s var(--ease);
}
.entry-content a:hover { opacity: 0.7; }
.entry-content blockquote {
	border-left: 2px solid var(--zm-accent);
	padding: 14px 0 14px 30px;
	margin: 40px 0;
	font-family: var(--font-display-cn);
	font-size: 22px;
	font-weight: 400;
	color: var(--zm-ink);
	font-style: italic;
}
.entry-content img {
	margin: 40px 0;
	border: 1px solid var(--zm-line);
}
.entry-content ul, .entry-content ol {
	padding-left: 1.5em;
	color: var(--zm-ink-2);
}
.entry-content code {
	background: var(--zm-bg-3);
	padding: 2px 6px;
	font-family: var(--font-mono);
	font-size: 0.9em;
	color: var(--zm-accent);
}


/* =============== SINGLE POST ================================= */
.single-hero {
	padding: 120px var(--gutter) 60px;
	background: var(--zm-bg);
	border-bottom: 1px solid var(--zm-line);
}
.single-hero__inner {
	max-width: 900px;
	margin: 0 auto 40px;
}
.single-hero__meta {
	display: flex;
	gap: 24px;
	margin-bottom: 32px;
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
}
.single-hero__cat { color: var(--zm-accent); }
.single-hero__date { color: var(--zm-ink-3); }
.single-hero__title {
	font-family: var(--font-display-cn);
	font-size: clamp(36px, 5vw, 64px);
	font-weight: 500;
	line-height: 1.1;
	margin: 0 0 24px;
	color: var(--zm-ink);
}
.single-hero__excerpt {
	font-size: 18px;
	color: var(--zm-ink-2);
	line-height: 1.65;
	max-width: 720px;
	margin: 0;
}
.single-hero__media {
	max-width: var(--max-w);
	margin: 60px auto 0;
}
.single-hero__media img { width: 100%; }

.single-content {
	padding: 80px var(--gutter);
	background: var(--zm-bg);
}
.single-content__inner {
	max-width: 800px;
	margin: 0 auto;
}
.single-footer {
	margin-top: 80px;
	padding-top: 40px;
	border-top: 1px solid var(--zm-line);
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 30px;
	font-size: 13px;
}
.single-tags__label,
.single-share__label {
	font-family: var(--font-mono);
	font-size: 10px;
	letter-spacing: 0.22em;
	color: var(--zm-ink-3);
	margin-right: 14px;
	text-transform: uppercase;
}
.single-tags__tag,
.single-share a {
	display: inline-block;
	margin-right: 10px;
	color: var(--zm-ink-2);
	transition: color .3s var(--ease);
}
.single-tags__tag:hover,
.single-share a:hover { color: var(--zm-accent); }

.single-nav {
	border-top: 1px solid var(--zm-line);
	background: var(--zm-bg-2);
}
.single-nav__inner {
	max-width: var(--max-w);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1px;
	background: var(--zm-line);
}
.single-nav__link {
	background: var(--zm-bg-2);
	padding: 50px var(--gutter);
	transition: background .35s var(--ease);
	color: var(--zm-ink);
}
.single-nav__link:hover { background: var(--zm-bg-3); }
.single-nav__link--next { text-align: right; }
.single-nav__dir {
	display: block;
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.2em;
	color: var(--zm-accent);
	margin-bottom: 12px;
	text-transform: uppercase;
}
.single-nav__title {
	display: block;
	font-family: var(--font-display-cn);
	font-size: 18px;
	color: var(--zm-ink);
	font-weight: 500;
}

.single-comments {
	padding: 80px var(--gutter);
	background: var(--zm-bg);
}
.single-comments__inner {
	max-width: 800px;
	margin: 0 auto;
}


/* =============== ARCHIVE / SEARCH ============================ */
.archive {
	padding: 80px var(--gutter) var(--section);
	background: var(--zm-bg);
}
.archive__inner { max-width: var(--max-w); margin: 0 auto; }

.archive__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 40px;
}
.archive-card {
	background: var(--zm-bg-2);
	border: 1px solid var(--zm-line);
	transition: transform .5s var(--ease), border-color .5s var(--ease);
}
.archive-card:hover {
	transform: translateY(-6px);
	border-color: var(--zm-accent);
}
.archive-card__link { display: block; color: var(--zm-ink); }
.archive-card__media {
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: var(--zm-bg-3);
}
.archive-card__media img {
	width: 100%; height: 100%;
	object-fit: cover;
	transition: transform 1s var(--ease);
}
.archive-card:hover .archive-card__media img { transform: scale(1.05); }
.archive-card__placeholder {
	width: 100%; height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--zm-ink-3);
}
.archive-card__body { padding: 28px; }
.archive-card__date {
	display: block;
	font-family: var(--font-mono);
	font-size: 10px;
	letter-spacing: 0.22em;
	color: var(--zm-accent);
	margin-bottom: 12px;
	text-transform: uppercase;
}
.archive-card__title {
	font-family: var(--font-display-cn);
	font-size: 22px;
	font-weight: 500;
	margin: 0 0 12px;
	line-height: 1.3;
}
.archive-card__excerpt {
	color: var(--zm-ink-2);
	margin: 0 0 20px;
	font-size: 14px;
	line-height: 1.65;
}
.archive-card__cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.18em;
	color: var(--zm-accent);
	text-transform: uppercase;
}


/* =============== PAGINATION ================================== */
.navigation.pagination {
	margin-top: 80px;
	padding-top: 40px;
	border-top: 1px solid var(--zm-line);
}
.navigation .nav-links {
	display: flex;
	justify-content: center;
	gap: 8px;
	flex-wrap: wrap;
}
.navigation .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px; height: 44px;
	padding: 0 14px;
	border: 1px solid var(--zm-line);
	color: var(--zm-ink-2);
	font-family: var(--font-mono);
	font-size: 13px;
	transition: all .3s var(--ease);
}
.navigation .page-numbers:hover,
.navigation .page-numbers.current {
	background: var(--zm-accent);
	color: var(--zm-bg);
	border-color: var(--zm-accent);
}


/* =============== 404 PAGE ==================================== */
.error-404 {
	min-height: 80vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: var(--section) var(--gutter);
	text-align: center;
	background: var(--zm-bg);
	position: relative;
}
.error-404__inner {
	max-width: 720px;
}
.error-404__num {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px;
	font-family: var(--font-display);
	font-style: italic;
	font-size: clamp(120px, 18vw, 220px);
	font-weight: 500;
	line-height: 1;
	color: var(--zm-accent);
	margin-bottom: 50px;
}
.error-404__waveform { color: var(--zm-accent); }
.error-404__title {
	font-family: var(--font-display-cn);
	font-size: clamp(32px, 4.5vw, 56px);
	margin-bottom: 20px;
}
.error-404__title em {
	font-family: var(--font-display);
	font-style: italic;
	color: var(--zm-accent);
}
.error-404__desc {
	color: var(--zm-ink-2);
	margin-bottom: 40px;
	line-height: 1.7;
}
.error-404__actions {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 14px;
	margin-bottom: 50px;
}
.error-404__search { max-width: 480px; margin: 0 auto; }


/* =============== SEARCH FORM ================================ */
.search-form {
	display: flex;
	gap: 0;
	border: 1px solid var(--zm-line);
	background: var(--zm-bg-2);
	transition: border-color .3s var(--ease);
}
.search-form:focus-within { border-color: var(--zm-accent); }
.search-form__field {
	flex: 1;
	padding: 14px 18px;
	background: transparent;
	border: none;
	color: var(--zm-ink);
	font-family: var(--font-body);
	font-size: 14px;
	outline: none;
}
.search-form__field::placeholder { color: var(--zm-ink-3); }
.search-form__submit {
	background: transparent;
	border: none;
	border-left: 1px solid var(--zm-line);
	padding: 0 20px;
	color: var(--zm-ink-2);
	display: flex;
	align-items: center;
	transition: all .3s var(--ease);
}
.search-form__submit:hover {
	background: var(--zm-accent);
	color: var(--zm-bg);
}


/* =============== COMMENTS ==================================== */
.comments-area { font-size: 15px; }
.comments-title {
	font-family: var(--font-display-cn);
	font-size: 24px;
	margin-bottom: 40px;
	font-weight: 500;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--zm-line);
}
.comment-list {
	list-style: none;
	padding: 0;
	margin: 0 0 60px;
}
.comment-list li {
	padding: 24px 0;
	border-bottom: 1px solid var(--zm-line-2);
}
.comment-form { margin-top: 40px; }
.comment-form p { margin-bottom: 18px; }
.comment-form label {
	display: block;
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.18em;
	color: var(--zm-ink-3);
	margin-bottom: 8px;
	text-transform: uppercase;
}
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
	width: 100%;
	padding: 14px 16px;
	background: var(--zm-bg-2);
	border: 1px solid var(--zm-line);
	color: var(--zm-ink);
	font-family: var(--font-body);
	font-size: 14px;
	transition: border-color .3s var(--ease);
}
.comment-form input:focus,
.comment-form textarea:focus {
	outline: none;
	border-color: var(--zm-accent);
}
.comment-form .submit {
	background: var(--zm-accent);
	color: var(--zm-bg);
	border: 1px solid var(--zm-accent);
	padding: 14px 32px;
	font-size: 14px;
	letter-spacing: 0.06em;
	cursor: pointer;
	transition: all .3s var(--ease);
}
.comment-form .submit:hover {
	background: var(--zm-accent-2);
	border-color: var(--zm-accent-2);
}


/* =============== FOOTER ====================================== */
.site-footer {
	background: #060609;
	padding: var(--section) var(--gutter) 40px;
	color: var(--zm-ink-2);
	border-top: 1px solid var(--zm-line);
}
.site-footer__inner {
	max-width: var(--max-w);
	margin: 0 auto;
}
.site-footer__top {
	display: grid;
	grid-template-columns: 1.2fr 2fr;
	gap: 80px;
	padding-bottom: 80px;
}
.site-footer__brand {
	display: flex;
	flex-direction: column;
	gap: 30px;
}
.site-footer__logo {
	color: var(--zm-accent);
	width: 60px;
}
.site-footer__cn {
	font-family: var(--font-display-cn);
	font-size: 28px;
	font-weight: 500;
	margin: 0 0 12px;
	color: var(--zm-ink);
	letter-spacing: 0.04em;
}
.site-footer__tag {
	color: var(--zm-ink-2);
	margin: 0;
	font-size: 14px;
	line-height: 1.7;
}

.site-footer__contact {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
}
.contact-block {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.contact-block__label {
	font-family: var(--font-mono);
	font-size: 10px;
	letter-spacing: 0.22em;
	color: var(--zm-ink-3);
	text-transform: uppercase;
}
.contact-block__value {
	font-family: var(--font-display-cn);
	font-size: 18px;
	color: var(--zm-ink);
	font-weight: 400;
	transition: color .3s var(--ease);
}
.contact-block__value--lg {
	font-family: var(--font-display);
	font-size: 32px;
	font-weight: 500;
	color: var(--zm-accent);
	letter-spacing: 0.02em;
}
a.contact-block__value:hover { color: var(--zm-accent); }

.site-footer__divider {
	height: 1px;
	background: var(--zm-line);
}

.site-footer__middle {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 40px 0;
	flex-wrap: wrap;
	gap: 20px;
}
.footer-menu {
	list-style: none;
	margin: 0; padding: 0;
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
}
.footer-menu li > a {
	color: var(--zm-ink-2);
	font-size: 14px;
	transition: color .3s var(--ease);
}
.footer-menu li > a:hover { color: var(--zm-accent); }

.site-footer__bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 30px;
	border-top: 1px solid var(--zm-line-2);
	flex-wrap: wrap;
	gap: 16px;
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.12em;
	color: var(--zm-ink-3);
	text-transform: uppercase;
}
.back-to-top {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--zm-ink-2);
	transition: color .3s var(--ease);
}
.back-to-top:hover { color: var(--zm-accent); }


/* =============== REVEAL ANIMATIONS =========================== */
[data-reveal] {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
[data-reveal].is-visible {
	opacity: 1;
	transform: translateY(0);
}
[data-reveal][data-delay="1"] { transition-delay: 0.1s; }
[data-reveal][data-delay="2"] { transition-delay: 0.2s; }
[data-reveal][data-delay="3"] { transition-delay: 0.3s; }
[data-reveal][data-delay="4"] { transition-delay: 0.4s; }


/* =============== RESPONSIVE ================================== */
@media (max-width: 1100px) {
	.services__grid { grid-template-columns: 1fr; }
	.service-card { border-right: none; border-bottom: 1px solid var(--zm-line); }
	.service-card:last-child { border-bottom: none; }
	.service-card__top { margin-bottom: 30px; }

	.cases__grid {
		grid-template-columns: repeat(2, 1fr);
		grid-auto-rows: 240px;
	}
	.case-card--lg, .case-card--wide { grid-column: span 2; }

	.section-header--split { grid-template-columns: 1fr; gap: 30px; }
	.site-footer__top { grid-template-columns: 1fr; gap: 50px; }
}

@media (max-width: 800px) {
	:root { --section: 70px; }

	.menu-toggle { display: flex; }
	.main-navigation { gap: 0; }
	.primary-menu {
		position: fixed;
		top: 0; right: 0;
		width: 100%; max-width: 420px;
		height: 100vh; height: 100dvh;
		background: var(--zm-bg-2);
		border-left: 1px solid var(--zm-line);
		flex-direction: column;
		gap: 0;
		padding: 100px 30px 40px;
		transform: translateX(100%);
		transition: transform .5s var(--ease);
		overflow-y: auto;
	}
	.primary-menu.is-open { transform: translateX(0); }
	.primary-menu li { width: 100%; }
	.primary-menu li > a {
		font-size: 22px;
		padding: 18px 0;
		font-family: var(--font-display-cn);
		border-bottom: 1px solid var(--zm-line);
	}
	.primary-menu li > a::after { display: none; }
	.primary-menu .sub-menu {
		position: static;
		opacity: 1; visibility: visible;
		transform: none;
		background: transparent;
		border: none;
		padding: 0 0 12px 16px;
	}
	.primary-menu .sub-menu li > a {
		font-size: 16px;
		font-family: var(--font-body);
		padding: 8px 0;
		border-bottom: none;
	}

	.site-header__cta { display: none; }
	.cta-phone { padding: 8px 12px; font-size: 11px; }

	.hero { padding-top: 80px; padding-bottom: 100px; }
	.hero__title { font-size: clamp(40px, 12vw, 72px); margin-bottom: 30px; }
	.hero__lede { margin-bottom: 30px; }
	.hero__actions { margin-bottom: 50px; }
	.hero__stats { gap: 30px; flex-wrap: wrap; }
	.hero__vertical { display: none; }
	.hero__scroll { display: none; }

	.cases__grid { grid-template-columns: 1fr; grid-auto-rows: 320px; }
	.case-card--lg, .case-card--wide { grid-column: span 1; grid-row: span 1; }

	.news-item__link {
		grid-template-columns: 1fr;
		gap: 16px;
		padding: 30px 16px;
	}
	.news-item__day { font-size: 36px; }
	.news-item__arrow { display: none; }

	.site-footer__contact { grid-template-columns: 1fr; gap: 30px; }
	.site-footer__bottom { flex-direction: column; align-items: flex-start; }

	.single-nav__inner { grid-template-columns: 1fr; }
	.single-nav__link--next { text-align: left; }
}

@media (max-width: 480px) {
	.section-header__title { font-size: clamp(28px, 9vw, 44px); }
	.contact-block__value--lg { font-size: 24px; }
	.quote-block__text { font-size: clamp(20px, 5vw, 28px); }
	.quote-mark { font-size: 180px; top: -50px; }
	.btn { padding: 12px 20px; font-size: 13px; }
	.cta-section__title { font-size: clamp(32px, 9vw, 48px); }
}


/* =============== REDUCE MOTION =============================== */
@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}


/* =============== FOCUS-VISIBLE (KEYBOARD ONLY) ================ */
:focus { outline: none; }

.is-keyboard-focus,
*:focus-visible {
	outline: 2px solid var(--zm-accent);
	outline-offset: 4px;
	border-radius: 1px;
}

a.is-keyboard-focus,
button.is-keyboard-focus,
[role="button"].is-keyboard-focus,
input.is-keyboard-focus,
textarea.is-keyboard-focus,
select.is-keyboard-focus {
	outline: 2px solid var(--zm-accent-2);
	outline-offset: 4px;
	box-shadow: 0 0 0 4px rgba(201,169,97,0.18);
}

/* =============== ICP / 备案信息 ================================ */
.icp-filings {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	font-family: var(--zm-font-mono);
	font-size: 11px;
	color: var(--zm-ink-3);
	letter-spacing: 0.06em;
	margin-top: 12px;
}
.icp-filings a {
	color: var(--zm-ink-3);
	text-decoration: none;
	transition: color 0.2s;
}
.icp-filings a:hover { color: var(--zm-accent); }


/* =============== SOCIAL ICONS ================================== */
.social-list {
	display: flex;
	gap: 14px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.social-list a {
	display: inline-flex;
	width: 36px;
	height: 36px;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(201,169,97,0.25);
	color: var(--zm-ink-2);
	transition: color 0.25s, border-color 0.25s, transform 0.25s;
	border-radius: 50%;
}
.social-list a:hover {
	color: var(--zm-accent);
	border-color: var(--zm-accent);
	transform: translateY(-2px);
}


/* =============== PRINT STYLESHEET ============================== */
@media print {
	*,
	*::before,
	*::after {
		background: transparent !important;
		color: #000 !important;
		box-shadow: none !important;
		text-shadow: none !important;
	}
	body { font: 11pt/1.5 'Noto Serif SC', serif; }
	.marquee,
	.site-header,
	.site-footer,
	.cta-section,
	.menu-toggle,
	.back-to-top,
	.hero__waveform,
	.hero__decoration-cn,
	#wpadminbar { display: none !important; }
	a { text-decoration: underline; }
	a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 9pt; color: #666 !important; }
	h1, h2, h3 { page-break-after: avoid; break-after: avoid; }
	img, figure, .case-card, .news-item { page-break-inside: avoid; break-inside: avoid; }
}


/* =============== REDUCED-DATA SUPPORT ========================== */
@media (prefers-reduced-data: reduce) {
	.hero__waveform svg { display: none; }
	.hero { background-image: none; }
	*[style*="background-image"] { background-image: none !important; }
}


/* =============== HIGH CONTRAST MODE ============================ */
@media (prefers-contrast: more) {
	:root {
		--zm-ink-2: #ffffff;
		--zm-ink-3: #d4d0c4;
		--zm-accent: #ffd54a;
	}
	.btn-ghost,
	.btn-outline { border-width: 2px; }
}


/* ============================================================
 * ROUND 1 — SEO/获客 增强样式
 * ============================================================ */

/* ------ FAQ accordion ------ */
.faq-section { padding: 80px 0 60px; }
.faq-section .container {
	display: grid;
	grid-template-columns: 240px 1fr;
	gap: 60px;
	align-items: start;
}
.faq-toc {
	position: sticky;
	top: 120px;
}
.faq-toc__label {
	font-family: var(--zm-font-mono);
	font-size: 11px;
	letter-spacing: 0.18em;
	color: var(--zm-ink-3);
	text-transform: uppercase;
	margin-bottom: 16px;
}
.faq-toc ul {
	list-style: none;
	margin: 0;
	padding: 0;
	border-left: 1px solid rgba(201,169,97,0.18);
}
.faq-toc li a {
	display: block;
	padding: 10px 0 10px 20px;
	margin-left: -1px;
	color: var(--zm-ink-2);
	text-decoration: none;
	border-left: 1px solid transparent;
	transition: color 0.2s, border-color 0.2s;
}
.faq-toc li a:hover {
	color: var(--zm-accent);
	border-left-color: var(--zm-accent);
}
.faq-toc sup {
	color: var(--zm-ink-3);
	font-size: 11px;
	margin-left: 4px;
}
.faq-group { margin-bottom: 50px; }
.faq-group__title {
	font-family: var(--zm-font-serif-cn);
	font-size: clamp(24px, 2.4vw, 30px);
	font-weight: 700;
	margin: 0 0 24px;
	padding-bottom: 12px;
	border-bottom: 1px solid rgba(201,169,97,0.15);
	color: var(--zm-accent);
}
.faq-list .faq-item {
	border-bottom: 1px solid rgba(201,169,97,0.12);
	padding: 4px 0;
}
.faq-item__q {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 18px 0;
	cursor: pointer;
	list-style: none;
	font-family: var(--zm-font-serif-cn);
	font-size: 18px;
	font-weight: 500;
	color: var(--zm-ink);
	transition: color 0.2s;
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q:hover { color: var(--zm-accent); }
.faq-item__icon {
	display: inline-flex;
	width: 24px;
	height: 24px;
	margin-top: 3px;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(201,169,97,0.3);
	border-radius: 50%;
	color: var(--zm-accent);
	transition: transform 0.3s;
	flex-shrink: 0;
}
.faq-item[open] .faq-item__icon { transform: rotate(180deg); }
.faq-item__a {
	padding: 0 0 22px 38px;
	color: var(--zm-ink-2);
	font-size: 15px;
	line-height: 1.75;
}

@media (max-width: 900px) {
	.faq-section .container { grid-template-columns: 1fr; gap: 30px; }
	.faq-toc { position: static; }
	.faq-toc ul { display: flex; flex-wrap: wrap; gap: 8px; border: none; }
	.faq-toc li a {
		padding: 8px 16px;
		border: 1px solid rgba(201,169,97,0.2);
		border-radius: 999px;
		margin: 0;
	}
}


/* ------ Pricing tiers ------ */
.pricing-section { padding: 60px 0 80px; }
.pricing-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.pricing-card {
	position: relative;
	display: flex;
	flex-direction: column;
	background: var(--zm-bg-2);
	border: 1px solid rgba(201,169,97,0.18);
	padding: 40px 32px;
	transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.pricing-card:hover {
	transform: translateY(-4px);
	border-color: rgba(201,169,97,0.4);
	box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.pricing-card--highlight {
	background: linear-gradient(180deg, var(--zm-bg-2) 0%, rgba(201,169,97,0.04) 100%);
	border-color: var(--zm-accent);
	transform: translateY(-12px);
}
.pricing-card--highlight:hover { transform: translateY(-16px); }
.pricing-card__badge {
	position: absolute;
	top: -1px;
	right: -1px;
	background: var(--zm-accent);
	color: var(--zm-bg);
	font-family: var(--zm-font-mono);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	padding: 6px 16px;
}
.pricing-card__tier {
	font-family: var(--zm-font-mono);
	font-size: 11px;
	letter-spacing: 0.22em;
	color: var(--zm-ink-3);
	text-transform: uppercase;
	margin: 0 0 8px;
}
.pricing-card__name {
	font-family: var(--zm-font-serif-cn);
	font-size: 26px;
	font-weight: 700;
	margin: 0;
	color: var(--zm-ink);
}
.pricing-card__cn {
	font-size: 13px;
	color: var(--zm-ink-3);
	margin: 4px 0 24px;
}
.pricing-card__price {
	display: flex;
	align-items: baseline;
	gap: 4px;
	margin: 0 0 16px;
	padding: 24px 0;
	border-top: 1px solid rgba(201,169,97,0.12);
	border-bottom: 1px solid rgba(201,169,97,0.12);
	color: var(--zm-accent);
}
.pricing-card__currency { font-size: 20px; }
.pricing-card__amount {
	font-family: var(--zm-font-serif-en);
	font-size: 56px;
	font-weight: 600;
	letter-spacing: -0.02em;
	line-height: 1;
}
.pricing-card__unit {
	font-size: 14px;
	color: var(--zm-ink-3);
	margin-left: 4px;
}
.pricing-card__desc {
	color: var(--zm-ink-2);
	font-size: 14px;
	line-height: 1.65;
	margin: 0 0 24px;
}
.pricing-card__features {
	list-style: none;
	margin: 0 0 24px;
	padding: 0;
}
.pricing-card__features li {
	display: flex;
	gap: 10px;
	padding: 8px 0;
	color: var(--zm-ink-2);
	font-size: 13px;
	line-height: 1.5;
}
.pricing-card__features svg { color: var(--zm-accent); flex-shrink: 0; margin-top: 4px; }
.pricing-card__instruments {
	font-size: 12px;
	color: var(--zm-ink-3);
	line-height: 1.55;
	padding: 14px;
	background: rgba(0,0,0,0.18);
	border-left: 2px solid var(--zm-accent);
	margin: 0 0 24px;
}
.pricing-card__instruments strong { color: var(--zm-ink-2); }
.pricing-card__cta { margin-top: auto; text-align: center; }

@media (max-width: 900px) {
	.pricing-grid { grid-template-columns: 1fr; }
	.pricing-card--highlight { transform: none; }
	.pricing-card--highlight:hover { transform: translateY(-4px); }
}


/* ------ Factors grid ------ */
.factors-section { padding: 80px 0; background: var(--zm-bg-2); }
.factors-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 40px;
}
.factor-card {
	padding: 28px 24px;
	border: 1px solid rgba(201,169,97,0.12);
	background: var(--zm-bg);
}
.factor-card__icon { font-size: 28px; margin-bottom: 12px; }
.factor-card__title {
	font-family: var(--zm-font-serif-cn);
	font-size: 18px;
	font-weight: 700;
	margin: 0 0 8px;
	color: var(--zm-ink);
}
.factor-card__desc {
	font-size: 13px;
	color: var(--zm-ink-2);
	line-height: 1.65;
	margin: 0;
}
@media (max-width: 700px) { .factors-grid { grid-template-columns: 1fr; } }


/* ------ Process steps ------ */
.process-section { padding: 80px 0; }
.process-list {
	list-style: none;
	margin: 0;
	padding: 0;
	max-width: 780px;
	margin-inline: auto;
}
.process-step {
	position: relative;
	display: grid;
	grid-template-columns: 80px 1fr;
	gap: 32px;
	padding-bottom: 60px;
}
.process-step:last-child { padding-bottom: 0; }
.process-step__num {
	font-family: var(--zm-font-serif-en);
	font-style: italic;
	font-size: 56px;
	font-weight: 500;
	line-height: 1;
	color: var(--zm-accent);
	position: relative;
	z-index: 2;
}
.process-step__line {
	position: absolute;
	left: 30px;
	top: 70px;
	bottom: 0;
	width: 1px;
	background: linear-gradient(180deg, rgba(201,169,97,0.4) 0%, transparent 100%);
}
.process-step:last-child .process-step__line { display: none; }
.process-step__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 12px;
	flex-wrap: wrap;
}
.process-step__title {
	font-family: var(--zm-font-serif-cn);
	font-size: clamp(22px, 2.2vw, 28px);
	font-weight: 700;
	margin: 0;
	color: var(--zm-ink);
}
.process-step__title em {
	font-family: var(--zm-font-serif-en);
	font-style: italic;
	font-size: 0.7em;
	color: var(--zm-ink-3);
	margin-left: 8px;
	font-weight: 400;
}
.process-step__time {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: var(--zm-font-mono);
	font-size: 11px;
	letter-spacing: 0.12em;
	color: var(--zm-ink-3);
	text-transform: uppercase;
	margin: 0;
}
.process-step__desc {
	color: var(--zm-ink-2);
	font-size: 15px;
	line-height: 1.75;
	margin: 0 0 16px;
}
.process-step__output {
	display: inline-flex;
	gap: 8px;
	padding: 8px 16px;
	background: rgba(201,169,97,0.06);
	border-left: 2px solid var(--zm-accent);
	font-size: 12px;
}
.process-step__output-label {
	font-family: var(--zm-font-mono);
	color: var(--zm-ink-3);
	letter-spacing: 0.1em;
	text-transform: uppercase;
}
.process-step__output-text { color: var(--zm-ink-2); }

@media (max-width: 700px) {
	.process-step { grid-template-columns: 60px 1fr; gap: 16px; }
	.process-step__num { font-size: 40px; }
	.process-step__line { left: 22px; }
}


/* ------ Commitments ------ */
.commitments-section { padding: 80px 0; background: var(--zm-bg-2); }
.commitments-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	background: rgba(201,169,97,0.12);
	margin-top: 40px;
}
.commitment-card {
	background: var(--zm-bg-2);
	padding: 32px 28px;
}
.commitment-card h3 {
	font-family: var(--zm-font-serif-cn);
	font-size: 18px;
	font-weight: 700;
	margin: 0 0 10px;
	color: var(--zm-accent);
}
.commitment-card p {
	font-size: 13px;
	color: var(--zm-ink-2);
	line-height: 1.7;
	margin: 0;
}
@media (max-width: 900px) { .commitments-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .commitments-grid { grid-template-columns: 1fr; } }


/* ------ Testimonials ------ */
.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 32px;
}
.testimonial-card {
	background: var(--zm-bg-2);
	border: 1px solid rgba(201,169,97,0.15);
	padding: 32px 28px;
	display: flex;
	flex-direction: column;
}
.testimonial-card__rating {
	display: flex;
	gap: 3px;
	color: var(--zm-accent);
	margin-bottom: 16px;
}
.testimonial-card__quote {
	flex: 1;
	margin: 0 0 24px;
	font-family: var(--zm-font-serif-cn);
	font-size: 16px;
	line-height: 1.75;
	color: var(--zm-ink);
}
.testimonial-card__quote p { margin: 0; }
.testimonial-card__attr {
	padding-top: 16px;
	border-top: 1px solid rgba(201,169,97,0.12);
}
.testimonial-card__name {
	font-weight: 700;
	color: var(--zm-ink);
	font-size: 14px;
	margin: 0 0 4px;
}
.testimonial-card__role,
.testimonial-card__event {
	font-size: 12px;
	color: var(--zm-ink-3);
	margin: 2px 0;
}
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; } }


/* ------ Sticky mobile CTA ------ */
.sticky-cta {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 90;
	display: none; /* shown only on mobile */
	background: rgba(10,10,15,0.95);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-top: 1px solid rgba(201,169,97,0.2);
	padding: 12px env(safe-area-inset-right) calc(12px + env(safe-area-inset-bottom)) env(safe-area-inset-left);
}
.sticky-cta__btn {
	flex: 1;
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	padding: 6px 8px;
	color: var(--zm-ink-2);
	background: transparent;
	border: none;
	font-size: 11px;
	font-family: var(--zm-font-cn);
	text-decoration: none;
	cursor: pointer;
	transition: color 0.2s;
}
.sticky-cta__btn:hover,
.sticky-cta__btn:active { color: var(--zm-accent); }
.sticky-cta__btn--call { color: var(--zm-accent); }
.sticky-cta__btn--inquiry { color: var(--zm-accent-2); }
.sticky-cta { align-items: stretch; gap: 4px; }
.wechat-popover {
	position: fixed;
	left: 50%;
	bottom: 80px;
	transform: translateX(-50%);
	background: var(--zm-bg-2);
	border: 1px solid rgba(201,169,97,0.3);
	padding: 16px;
	z-index: 91;
	text-align: center;
}
.wechat-popover img { display: block; margin: 0 auto 8px; }
.wechat-popover p { margin: 0; font-size: 12px; color: var(--zm-ink-3); }

@media (min-width: 800px) { .sticky-cta { display: none; } body.has-sticky-cta { padding-bottom: 0; } }
@media (max-width: 799px) { .sticky-cta { display: flex; } body.has-sticky-cta { padding-bottom: 76px; } }
@media (max-width: 799px) {
	body.has-sticky-cta .hero__actions .btn--ghost[href^="tel:"] {
		display: none;
	}
}


/* ------ Page hero variants ------ */
.page-hero {
	padding: 120px 0 60px;
	background: linear-gradient(180deg, var(--zm-bg) 0%, var(--zm-bg-2) 100%);
	position: relative;
}
.page-hero__inner { max-width: 880px; }
.page-hero__title {
	font-family: var(--zm-font-serif-cn);
	font-size: clamp(40px, 5.5vw, 72px);
	font-weight: 900;
	line-height: 1.1;
	letter-spacing: -0.02em;
	margin: 16px 0 24px;
	color: var(--zm-ink);
}
.page-hero__title em {
	font-family: var(--zm-font-serif-en);
	font-style: italic;
	font-weight: 500;
	color: var(--zm-accent);
}
.page-hero__title-cn { display: block; }
.page-hero__title-en {
	display: block;
	font-family: var(--zm-font-serif-en);
	font-style: italic;
	font-size: 0.5em;
	font-weight: 500;
	color: var(--zm-ink-3);
	margin-top: 8px;
}
.page-hero__lede {
	font-size: 17px;
	line-height: 1.7;
	color: var(--zm-ink-2);
	margin: 0 0 12px;
	max-width: 720px;
}
.page-hero__note {
	font-size: 13px;
	color: var(--zm-ink-3);
	font-style: italic;
}


/* ------ Service detail (services page) ------ */
.services-detail { padding: 60px 0 80px; }
.service-detail {
	display: grid;
	grid-template-columns: 80px 80px 1fr;
	gap: 24px;
	align-items: start;
	padding: 40px 0;
	border-bottom: 1px solid rgba(201,169,97,0.12);
}
.service-detail__num {
	font-family: var(--zm-font-serif-en);
	font-style: italic;
	font-size: 64px;
	font-weight: 500;
	color: var(--zm-accent);
	line-height: 0.9;
}
.service-detail__icon { color: var(--zm-accent-2); margin-top: 8px; }
.service-detail__head { grid-column: 3; }
.service-detail__en {
	font-family: var(--zm-font-serif-en);
	font-style: italic;
	font-size: 14px;
	color: var(--zm-ink-3);
	margin: 0 0 4px;
}
.service-detail__title {
	font-family: var(--zm-font-serif-cn);
	font-size: clamp(28px, 3vw, 40px);
	font-weight: 700;
	margin: 0;
	color: var(--zm-ink);
}
.service-detail__desc {
	grid-column: 3;
	font-size: 16px;
	line-height: 1.75;
	color: var(--zm-ink-2);
	margin: 16px 0;
}
.service-detail__tags {
	grid-column: 3;
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.service-detail__tags li {
	padding: 6px 14px;
	font-size: 12px;
	color: var(--zm-ink-2);
	border: 1px solid rgba(201,169,97,0.25);
}
.service-detail__cta {
	grid-column: 3;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 16px;
	font-family: var(--zm-font-mono);
	font-size: 12px;
	letter-spacing: 0.12em;
	color: var(--zm-accent);
	text-decoration: none;
	text-transform: uppercase;
	transition: color 0.2s, gap 0.2s;
}
.service-detail__cta:hover { color: var(--zm-accent-2); gap: 12px; }
@media (max-width: 700px) {
	.service-detail { grid-template-columns: 1fr; gap: 12px; }
	.service-detail__head, .service-detail__desc, .service-detail__tags, .service-detail__cta { grid-column: 1; }
	.service-detail__num { font-size: 48px; }
}


/* ------ Scenarios ------ */
.scenarios-section { padding: 80px 0; background: var(--zm-bg-2); }
.scenarios-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	background: rgba(201,169,97,0.12);
	margin-top: 40px;
}
.scenario-card {
	background: var(--zm-bg);
	padding: 32px 28px;
}
.scenario-card__en {
	font-family: var(--zm-font-serif-en);
	font-style: italic;
	font-size: 14px;
	color: var(--zm-ink-3);
	margin: 0 0 4px;
}
.scenario-card__title {
	font-family: var(--zm-font-serif-cn);
	font-size: 22px;
	font-weight: 700;
	margin: 0 0 12px;
	color: var(--zm-accent);
}
.scenario-card__desc {
	font-size: 13px;
	color: var(--zm-ink-2);
	line-height: 1.65;
	margin: 0;
}
@media (max-width: 800px) { .scenarios-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .scenarios-grid { grid-template-columns: 1fr; } }


/* ------ Values cards (about) ------ */
.values-section { padding: 80px 0; }
.values-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1px;
	background: rgba(201,169,97,0.12);
	margin-top: 40px;
}
.value-card {
	background: var(--zm-bg);
	padding: 40px 32px;
}
.value-card__num {
	font-family: var(--zm-font-serif-en);
	font-style: italic;
	font-size: 48px;
	font-weight: 500;
	color: var(--zm-accent);
	line-height: 1;
	margin: 0 0 16px;
}
.value-card__title {
	margin: 0 0 12px;
	display: flex;
	align-items: baseline;
	gap: 12px;
}
.value-card__cn {
	font-family: var(--zm-font-serif-cn);
	font-size: 24px;
	font-weight: 700;
	color: var(--zm-ink);
}
.value-card__en {
	font-family: var(--zm-font-serif-en);
	font-style: italic;
	font-size: 16px;
	color: var(--zm-ink-3);
	font-weight: 400;
}
.value-card__desc {
	color: var(--zm-ink-2);
	font-size: 14px;
	line-height: 1.75;
	margin: 0;
}
@media (max-width: 700px) { .values-grid { grid-template-columns: 1fr; } }


/* ------ Stats row ------ */
.stats-section { padding: 60px 0; }
.stats-row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
	text-align: center;
}
.stat__num {
	display: inline-block;
	font-family: var(--zm-font-serif-en);
	font-style: italic;
	font-size: clamp(48px, 6vw, 80px);
	font-weight: 600;
	color: var(--zm-accent);
	line-height: 1;
}
.stat__suffix {
	font-family: var(--zm-font-serif-en);
	font-style: italic;
	font-size: clamp(32px, 4vw, 56px);
	color: var(--zm-accent);
}
.stat__label {
	display: block;
	margin-top: 8px;
	font-family: var(--zm-font-mono);
	font-size: 11px;
	letter-spacing: 0.12em;
	color: var(--zm-ink-3);
	text-transform: uppercase;
}
@media (max-width: 700px) { .stats-row { grid-template-columns: repeat(2, 1fr); gap: 24px; } }


/* ------ Contact page ------ */
.contact-section { padding: 60px 0 80px; }
.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: 60px;
	align-items: start;
}
.contact-block { margin-bottom: 24px; }
.contact-block__label {
	display: block;
	font-family: var(--zm-font-mono);
	font-size: 11px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--zm-ink-3);
	margin-bottom: 6px;
}
.contact-block__value {
	display: inline-block;
	color: var(--zm-ink);
	text-decoration: none;
	font-size: 16px;
	transition: color 0.2s;
}
.contact-block__value:hover { color: var(--zm-accent); }
.contact-block__value--lg {
	font-family: var(--zm-font-serif-en);
	font-size: 32px;
	color: var(--zm-accent);
	font-weight: 500;
	letter-spacing: 0.04em;
}
.contact-block__hint {
	font-size: 12px;
	color: var(--zm-ink-3);
	margin: 8px 0 0;
}
.wechat-qr {
	display: block;
	border: 1px solid rgba(201,169,97,0.2);
	background: var(--zm-bg-2);
	padding: 12px;
}

/* Inquiry form */
.inquiry-form { margin-top: 24px; }
.form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}
.form-row { display: flex; flex-direction: column; }
.form-row--full { grid-column: 1 / -1; }
.form-label {
	font-family: var(--zm-font-mono);
	font-size: 11px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--zm-ink-3);
	margin-bottom: 8px;
}
.form-req { color: var(--zm-red); margin-left: 2px; }
.form-input,
.form-select,
.form-textarea {
	width: 100%;
	padding: 12px 16px;
	background: var(--zm-bg-2);
	border: 1px solid rgba(201,169,97,0.18);
	color: var(--zm-ink);
	font-family: var(--zm-font-cn);
	font-size: 15px;
	transition: border-color 0.2s, background 0.2s;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
	outline: none;
	border-color: var(--zm-accent);
	background: var(--zm-bg);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-hint { font-size: 11px; color: var(--zm-ink-3); margin-top: 4px; }
.form-input.is-error { border-color: var(--zm-red); }
.form-input.is-error + .form-hint { color: var(--zm-red); }

.checkbox-group {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 4px;
}
.checkbox-item {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 14px;
	border: 1px solid rgba(201,169,97,0.2);
	font-size: 13px;
	color: var(--zm-ink-2);
	cursor: pointer;
	transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.checkbox-item:has(input:checked) {
	background: rgba(201,169,97,0.1);
	border-color: var(--zm-accent);
	color: var(--zm-accent);
}
.checkbox-item input { accent-color: var(--zm-accent); }

.form-actions {
	display: flex;
	flex-direction: column;
	gap: 12px;
	align-items: flex-start;
	margin-top: 8px;
}
.form-submit {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-width: 180px;
	justify-content: center;
}
.form-submit__loading { display: none; animation: zm-spin 1s linear infinite; }
.form-submit.is-loading .form-submit__text { opacity: 0.6; }
.form-submit.is-loading .form-submit__loading { display: inline-block; }
@keyframes zm-spin { to { transform: rotate(360deg); } }
.form-policy { font-size: 11px; color: var(--zm-ink-3); margin: 0; }
.form-feedback {
	margin-top: 16px;
	padding: 16px;
	font-size: 14px;
	display: none;
}
.form-feedback.is-success {
	display: block;
	background: rgba(34,139,84,0.12);
	border-left: 2px solid #2a9d62;
	color: #d4eddd;
}
.form-feedback.is-error {
	display: block;
	background: rgba(168,35,42,0.12);
	border-left: 2px solid var(--zm-red);
	color: #f5c6c8;
}

@media (max-width: 800px) {
	.contact-grid { grid-template-columns: 1fr; gap: 40px; }
	.form-grid { grid-template-columns: 1fr; }
}


/* ------ Breadcrumb ------ */
.breadcrumb {
	display: flex;
	gap: 8px;
	font-family: var(--zm-font-mono);
	font-size: 11px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--zm-ink-3);
	margin: 0 0 16px;
	flex-wrap: wrap;
}
.breadcrumb a { color: var(--zm-ink-3); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--zm-accent); }
.breadcrumb [aria-current] { color: var(--zm-accent); }


/* ------ Single case ------ */
.single-case__hero { padding: 100px 0 0; }
.single-case__cats {
	font-family: var(--zm-font-mono);
	font-size: 11px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--zm-accent);
	margin: 0 0 16px;
}
.single-case__title {
	font-family: var(--zm-font-serif-cn);
	font-size: clamp(36px, 5vw, 64px);
	font-weight: 900;
	line-height: 1.1;
	margin: 0 0 32px;
	max-width: 880px;
}
.single-case__meta {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 1px;
	background: rgba(201,169,97,0.12);
	margin: 0 0 60px;
}
.single-case__meta > div {
	background: var(--zm-bg);
	padding: 16px 20px;
}
.single-case__meta dt {
	font-family: var(--zm-font-mono);
	font-size: 10px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--zm-ink-3);
	margin: 0 0 4px;
}
.single-case__meta dd {
	color: var(--zm-ink);
	font-size: 14px;
	margin: 0;
}
.single-case__cover {
	margin: 0 0 60px;
	max-height: 80vh;
	overflow: hidden;
}
.single-case__cover img { width: 100%; height: auto; display: block; }
.single-case__content { max-width: 760px; margin: 0 auto 80px; }


/* ------ Case archive grid ------ */
.case-archive { padding: 40px 0 80px; }
.case-filter { padding: 16px 0 40px; border-bottom: 1px solid rgba(201,169,97,0.12); margin-bottom: 40px; }
.case-filter__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.case-filter__btn {
	display: inline-flex;
	align-items: baseline;
	gap: 4px;
	padding: 8px 18px;
	border: 1px solid rgba(201,169,97,0.18);
	color: var(--zm-ink-2);
	text-decoration: none;
	font-size: 14px;
	transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.case-filter__btn:hover { color: var(--zm-accent); border-color: var(--zm-accent); }
.case-filter__btn.is-active {
	background: var(--zm-accent);
	color: var(--zm-bg);
	border-color: var(--zm-accent);
}
.case-filter__btn sup { font-size: 11px; opacity: 0.7; }

.case-archive__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.case-archive__grid--related { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .case-archive__grid, .case-archive__grid--related { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .case-archive__grid, .case-archive__grid--related { grid-template-columns: 1fr; } }


/* ------ Empty state ------ */
.empty-state {
	text-align: center;
	padding: 80px 0;
	max-width: 480px;
	margin: 0 auto;
}
.empty-state__eyebrow {
	font-family: var(--zm-font-mono);
	font-size: 11px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--zm-ink-3);
	margin: 0 0 16px;
}
.empty-state__title {
	font-family: var(--zm-font-serif-cn);
	font-size: 32px;
	color: var(--zm-ink);
	margin: 0 0 16px;
}
.empty-state__text {
	color: var(--zm-ink-2);
	margin: 0 0 32px;
}


/* ============================================================
 * ROUND 2 — Bug fixes & polish
 * ============================================================ */

/* ---- Case filter animation states ---- */
.case-card {
	transition: opacity 0.3s ease, transform 0.3s ease;
}
.case-card.is-filtered-out {
	opacity: 0;
	transform: translateY(8px);
	pointer-events: none;
}
.case-card.is-filtered-in {
	opacity: 1;
	transform: translateY(0);
}

/* ---- Admin bar offset for sticky CTA & sticky header ---- */
.admin-bar .sticky-cta { bottom: 0; } /* admin bar is at top, no change */
@media (max-width: 782px) {
	.admin-bar .site-header { top: 46px; }
}
@media (min-width: 783px) {
	.admin-bar .site-header { top: 32px; }
}

/* ---- Footer social + ICP layout ---- */
.site-footer__bottom {
	flex-wrap: wrap;
	gap: 16px;
}
.site-footer__social {
	margin: 0;
}
.site-footer__bottom .icp-filings {
	width: 100%;
	margin-top: 4px;
	padding-top: 12px;
	border-top: 1px dashed rgba(201,169,97,0.12);
	justify-content: center;
}

/* ---- AMap iframe wrapper ---- */
.contact-map { margin-top: 40px; }
.contact-map__embed {
	position: relative;
	width: 100%;
	min-height: 400px;
	background: var(--zm-bg-2);
	border: 1px solid rgba(201,169,97,0.18);
	overflow: hidden;
}
.contact-map__embed iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}

/* ---- Page hero variants — process page wave bg ---- */
.page-hero--process,
.page-hero--pricing,
.page-hero--faq {
	position: relative;
}
.page-hero--process::before,
.page-hero--pricing::before,
.page-hero--faq::before {
	content: '';
	position: absolute;
	left: 0; right: 0; bottom: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent 0%, var(--zm-accent) 50%, transparent 100%);
	opacity: 0.4;
}

/* ---- Single case CTA section variant ---- */
.cta-section--case { background: var(--zm-bg); border-top: 1px solid rgba(201,169,97,0.12); }

/* ---- Pricing FAQ mini ---- */
.pricing-faq-mini { padding: 60px 0; }
.pricing-faq-mini .faq-list { max-width: 760px; margin: 32px auto 0; }
.pricing-faq-mini__more { text-align: center; margin-top: 32px; }
.pricing-faq-mini__more a {
	color: var(--zm-accent);
	text-decoration: none;
	font-family: var(--zm-font-mono);
	font-size: 12px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}
.pricing-faq-mini__more a:hover { text-decoration: underline; }


/* ---- Page-hero hero margin from sticky header ---- */
.page-hero { padding-top: clamp(100px, 14vh, 160px); }


/* ---- Form button loading state ---- */
.form-submit { position: relative; }
.form-submit:disabled { cursor: wait; }


/* ---- Section header sm variant ---- */
.section-header--sm { margin-bottom: 24px; }
.section-header--sm .section-header__title { font-size: clamp(24px, 2.6vw, 32px); }


/* ---- Eyebrow num inline ---- */
.eyebrow {
	display: inline-flex;
	align-items: baseline;
	gap: 8px;
	font-family: var(--zm-font-mono);
	font-size: 11px;
	letter-spacing: 0.2em;
	color: var(--zm-ink-3);
	text-transform: uppercase;
	margin: 0 0 16px;
}
.eyebrow__num {
	font-style: italic;
	color: var(--zm-accent);
	font-family: var(--zm-font-serif-en);
	font-size: 14px;
	letter-spacing: 0;
}


/* ---- Single case meta grid spacing on small screens ---- */
@media (max-width: 600px) {
	.single-case__meta { grid-template-columns: 1fr 1fr; }
}


/* ---- Body padding for sticky CTA on mobile (avoid content cut-off) ---- */
@media (max-width: 799px) {
	body.has-sticky-cta { padding-bottom: 76px; }
}
body { padding-bottom: 0; }


/* ============================================================
 * ROUND 4 — 中文字体渲染优化
 * ============================================================ */

/* Crisp text rendering — applies to all text */
html {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
	-webkit-text-size-adjust: 100%;
}

/* Improved kerning for Chinese-Latin mix
   font-feature-settings:
   - "palt" 1   — proportional alternate (better Chinese spacing)
   - "kern" 1   — kerning between Latin pairs
   - "liga" 1   — standard ligatures
*/
body {
	font-feature-settings: "palt" 1, "kern" 1, "liga" 1;
	-webkit-locale: "zh-Hans";
	font-variant-numeric: lining-nums tabular-nums;
}

/* Latin-only context: Cormorant Garamond benefits from contextual alternates */
.hero__title-line em,
.eyebrow,
em.font-en,
.page-hero__title-en em,
.value-card__en,
.scenario-card__en,
.service-detail__en,
.testimonial-card__rating + * {
	font-feature-settings: "kern" 1, "liga" 1, "calt" 1, "ss01" 1;
}

/* Numbers — use tabular figures so 500/12/30 stat counters align */
.stat__num,
.pricing-card__amount,
.process-step__num,
.value-card__num,
.news-item__day,
.case-card__date {
	font-variant-numeric: tabular-nums;
	font-feature-settings: "tnum" 1, "lnum" 1;
}

/* Chinese punctuation alignment — half-width punctuation feels more Western
   but full-width feels more authentic; use proportional alt to balance */
.prose,
.faq-item__a,
.case-card__content,
.news-item__excerpt,
.service-card__desc,
.process-step__desc,
.value-card__desc,
.scenario-card__desc,
.testimonial-card__quote,
.commitment-card p,
.pricing-card__desc {
	font-feature-settings: "palt" 1, "kern" 1, "liga" 1;
	/* Hanging punctuation for cleaner Chinese paragraphs */
	hanging-punctuation: first allow-end last;
}

/* Headings — tighter letter-spacing for Chinese display */
h1, h2, h3, h4,
.hero__title,
.section-header__title,
.page-hero__title,
.single-case__title {
	letter-spacing: -0.02em;
	font-feature-settings: "kern" 1, "palt" 1;
	/* Avoid orphan single-character lines in Chinese */
	word-break: keep-all;
	overflow-wrap: break-word;
}

/* CJK-specific line breaking — keep punctuation tied to preceding character */
:lang(zh), :lang(zh-CN), [lang^="zh"] {
	line-break: strict;
	word-break: break-word;
}

/* Mixed Latin/CJK paragraphs benefit from these */
.hero__lede,
.page-hero__lede,
.section-header__desc {
	letter-spacing: 0;
	word-break: break-word;
	overflow-wrap: break-word;
}

/* Improve italic English in mixed contexts (Cormorant em inside CJK h1) */
.hero__title em,
.section-header__title em,
.page-hero__title em,
.cta-section__title em,
.value-card__title em {
	font-feature-settings: "kern" 1, "liga" 1, "calt" 1, "ss01" 1;
	/* Slight optical adjust for italic seriff next to upright CJK */
	margin: 0 0.05em;
	letter-spacing: 0;
}

/* Stronger contrast for thin Chinese text on dark bg */
.hero__lede,
.section-header__desc,
.faq-item__a,
.process-step__desc,
.commitment-card p {
	-webkit-font-smoothing: subpixel-antialiased;
}

/* Selection color — gold tint */
::selection {
	background: rgba(201, 169, 97, 0.32);
	color: var(--zm-ink, #f5efe1);
}
::-moz-selection {
	background: rgba(201, 169, 97, 0.32);
	color: var(--zm-ink, #f5efe1);
}

/* Focus ring for selected Chinese text — slightly different to be noticeable */
*:focus-visible {
	outline-offset: 3px;
}


/* ============================================================
 * V1.5 — 截图反馈优化（基于实际部署观察）
 * ============================================================ */

/* Hero lede 中文行高与字间距优化（让多行长文更舒展） */
.hero__lede {
	max-width: 640px;
	letter-spacing: 0.01em;
	line-height: 1.85;
	color: rgba(245, 239, 225, 0.85);
}

/* Hero stats 三栏更明确的视觉层级 */
.hero__stats {
	display: grid;
	grid-template-columns: repeat(3, max-content);
	gap: clamp(48px, 8vw, 96px);
	margin-top: clamp(48px, 6vw, 80px);
	padding-top: 32px;
	border-top: 1px solid rgba(201, 169, 97, 0.15);
	max-width: 720px;
}

.hero__stats .stat {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.hero__stats .stat__num {
	font-family: var(--font-display);
	font-style: italic;
	font-size: clamp(48px, 6vw, 84px);
	font-weight: 600;
	line-height: 0.95;
	color: var(--zm-accent);
	letter-spacing: -0.02em;
}

.hero__stats .stat__num::after {
	content: "+";
	display: inline-block;
	margin-left: 0.05em;
	font-size: 0.6em;
	vertical-align: 0.5em;
	font-weight: 500;
}
.hero__stats .stat:nth-child(2) .stat__num::after {
	content: ""; /* "12" doesn't have + */
}

.hero__stats .stat__label {
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--zm-ink-3);
	margin-top: 8px;
	white-space: nowrap;
}

/* Hero vertical decoration — 提升可读性 */
.hero__vertical {
	position: absolute;
	right: clamp(20px, 3vw, 48px);
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	pointer-events: none;
	opacity: 0;
	animation: hero-fade-in 1s var(--ease-out) 1.2s forwards;
}
.hero__vertical span {
	writing-mode: vertical-rl;
	font-family: var(--font-display-cn);
	font-size: clamp(13px, 1.4vw, 17px);
	letter-spacing: 0.5em;
	color: var(--zm-accent-2);
	text-transform: uppercase;
	font-weight: 500;
	opacity: 0.65;
}

/* Hero CTA buttons polish */
.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 40px;
}
.hero__actions .btn--primary,
.hero__actions .btn--ghost {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 18px 32px;
	font-size: 14px;
	letter-spacing: 0.15em;
	min-height: 56px;
}
.hero__actions .btn--ghost {
	color: var(--zm-ink-2);
	border: 1px solid rgba(201, 169, 97, 0.3);
	background: transparent;
	transition: border-color 0.25s, color 0.25s, background 0.25s;
}
.hero__actions .btn--ghost:hover {
	color: var(--zm-accent);
	border-color: var(--zm-accent);
	background: rgba(201, 169, 97, 0.04);
}
.hero__actions .btn--ghost svg {
	color: var(--zm-accent);
}

/* Mobile — 防止 hero 过挤 */
@media (max-width: 700px) {
	.hero {
		padding-top: 100px;
		padding-bottom: 80px;
	}
	.hero__stats {
		grid-template-columns: repeat(3, 1fr);
		gap: 16px;
	}
	.hero__stats .stat__label {
		font-size: 9px;
		letter-spacing: 0.12em;
	}
	.hero__vertical { display: none; }
}

/* 防止水平滚动条由 hero 元素引起 */
.hero, .hero__bg, .hero__waveform { overflow: hidden; }


/* ============================================================
 * 服务卡 / 案例卡 / CTA 区块的微调
 * ============================================================ */

/* 服务卡内边距与悬停效果 */
.service-card {
	min-height: 360px;
}

/* 案例卡图片懒加载占位 */
.case-card__media img {
	transition: transform 0.6s var(--ease-out, cubic-bezier(0.16, 1, 0.3, 1));
}
.case-card:hover .case-card__media img {
	transform: scale(1.04);
}

/* CTA section 间距 */
.cta-section {
	padding: clamp(80px, 10vw, 160px) var(--gutter);
}


/* ============================================================
 * V1.6 — HERO 2 栏布局重构（解决右侧空白问题）
 * ============================================================ */

/* Override: 旧版 hero__waveform 是绝对定位背景，现在改为 stage 内部相对布局 */
.hero__bg .hero__waveform { display: none; }

/* Hero 容器 — 改为 CSS Grid 双栏 */
.hero__inner {
	display: grid;
	grid-template-columns: 1.15fr 1fr;
	gap: clamp(40px, 5vw, 80px);
	align-items: center;
	max-width: var(--max-w, 1400px);
	margin: 0 auto;
	width: 100%;
	position: relative;
	z-index: 2;
}

/* 左栏：文字内容 */
.hero__main {
	display: flex;
	flex-direction: column;
	min-width: 0; /* 防止溢出 */
}

/* 右栏：舞台框 — 装载动态波形 */
.hero__stage {
	position: relative;
	width: 100%;
	aspect-ratio: 4 / 3;
	min-height: 320px;
	max-height: 520px;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	animation: hero-fade-in 1.2s var(--ease-out) 0.6s forwards;
}

.hero__stage-frame {
	position: relative;
	width: 100%;
	height: 100%;
	background:
		radial-gradient(ellipse at 50% 50%, rgba(201, 169, 97, 0.08) 0%, rgba(10, 10, 15, 0.9) 70%),
		linear-gradient(135deg, #0c0c12 0%, #16161e 100%);
	border: 1px solid rgba(201, 169, 97, 0.18);
	overflow: hidden;
	display: grid;
	grid-template-rows: auto 1fr;
	box-shadow:
		0 24px 60px -20px rgba(0, 0, 0, 0.6),
		0 0 0 1px rgba(201, 169, 97, 0.05);
}

.hero__stage-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 18px 22px 0;
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.18em;
	z-index: 2;
}

.hero__stage-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--zm-ink-3);
	text-transform: lowercase;
}

.hero__stage-label em {
	font-family: var(--font-display);
	font-style: italic;
	font-size: 13px;
	letter-spacing: 0.05em;
	color: var(--zm-ink-2);
	text-transform: lowercase;
}

.hero__stage-dot {
	display: inline-block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--zm-accent);
	box-shadow: 0 0 12px rgba(201, 169, 97, 0.6);
	animation: hero-stage-pulse 1.6s ease-in-out infinite;
}

@keyframes hero-stage-pulse {
	0%, 100% { opacity: 0.4; transform: scale(1); }
	50%      { opacity: 1;   transform: scale(1.2); }
}

.hero__stage-status {
	color: var(--zm-accent);
	text-transform: uppercase;
	font-weight: 500;
}

/* 波形 — 现在在 stage 内部 */
.hero__stage .hero__waveform {
	display: block !important;
	position: relative;
	width: 100%;
	height: 100%;
	color: var(--zm-accent);
	opacity: 0.85;
	filter: drop-shadow(0 0 24px rgba(201, 169, 97, 0.35));
	padding: 12px 22px 22px;
	box-sizing: border-box;
}

/* Stage 四角装饰角线 */
.hero__stage-corners span {
	position: absolute;
	width: 14px;
	height: 14px;
	border: 1px solid var(--zm-accent);
	opacity: 0.6;
}
.hero__stage-corners span:nth-child(1) { top: 0;    left: 0;    border-right: 0; border-bottom: 0; }
.hero__stage-corners span:nth-child(2) { top: 0;    right: 0;   border-left: 0;  border-bottom: 0; }
.hero__stage-corners span:nth-child(3) { bottom: 0; left: 0;    border-right: 0; border-top: 0;    }
.hero__stage-corners span:nth-child(4) { bottom: 0; right: 0;   border-left: 0;  border-top: 0;    }


/* Hero 主行 (inner) 之后的统计行 — 横跨全宽 */
.hero > .hero__stats {
	position: relative;
	z-index: 2;
	max-width: var(--max-w, 1400px);
	margin: clamp(40px, 6vw, 80px) auto 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr) auto;
	gap: 32px;
	padding-top: 32px;
	border-top: 1px solid rgba(201, 169, 97, 0.15);
	align-items: end;
}

/* 在 hero__stats 之后留位置给 SCROLL 指示 */
.hero > .hero__stats::after {
	content: "scroll to explore";
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.16em;
	color: var(--zm-ink-3);
	text-transform: lowercase;
	align-self: center;
	justify-self: end;
	padding-bottom: 6px;
	white-space: nowrap;
}


/* Hero 整体最小高度 — 双栏对齐 */
.hero {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 95vh;
	min-height: 95dvh;
	padding: clamp(120px, 14vh, 180px) clamp(40px, 5vw, 80px) clamp(60px, 8vh, 100px);
	position: relative;
	overflow: hidden;
	background: var(--zm-bg);
}


/* 移动端：单栏堆叠 — Stage 在 actions 之后 */
@media (max-width: 960px) {
	.hero {
		min-height: auto;
		padding-top: 100px;
		padding-bottom: 60px;
	}
	.hero__inner {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.hero__stage {
		order: 99; /* push to bottom */
		aspect-ratio: 16 / 10;
		min-height: 240px;
		max-height: 320px;
	}
	.hero > .hero__stats {
		grid-template-columns: repeat(3, 1fr);
		gap: 16px;
	}
	.hero > .hero__stats::after {
		display: none; /* hide scroll text on mobile */
	}
	.hero__vertical { display: none; }
}

@media (max-width: 600px) {
	.hero__stage {
		aspect-ratio: 4 / 3;
		min-height: 200px;
	}
	.hero__stage-meta { padding: 12px 14px 0; font-size: 10px; }
	.hero__stage .hero__waveform { padding: 8px 14px 14px; }
}


/* SCROLL 链接微调（已在 stats::after 显示文字了，原 SCROLL 链接保留为辅助） */
.hero__scroll {
	display: none; /* 现在统计栏后置文字代替 */
}
@media (max-width: 960px) {
	.hero__scroll { display: none; }
}

/* 修正：原先 hero__inner 内嵌 hero__stats 现在拆出来了，
   旧规则会遗留 — 用 :has() 选择器或直接强制 */
.hero__main > .hero__stats { display: none; } /* 兼容旧标记不再生效 */


/* ============================================================
 * V1.7 — Hero 内容平衡（统计移入右栏 + 标题瘦身）
 * ============================================================ */

/* 1. 缩小 Hero 标题，避免霸屏 */
.hero__title {
	font-family: var(--font-display-cn);
	font-size: clamp(40px, 5.6vw, 76px) !important; /* was 7vw 96px */
	font-weight: 500;
	line-height: 1.08;
	letter-spacing: -0.02em;
	margin-bottom: clamp(24px, 3vw, 36px);
}

.hero__title-line--2 em {
	font-size: 1em;
}

.hero__title-flourish {
	width: clamp(80px, 10vw, 140px);
	height: auto;
}

/* 2. Hero 主行：左 + 右栏，右栏现在是堆叠（stage / stats / scroll-hint） */
.hero__inner {
	display: grid;
	grid-template-columns: 1.05fr 1fr;
	gap: clamp(40px, 5vw, 80px);
	align-items: stretch; /* 让两栏等高 */
	max-width: var(--max-w, 1400px);
	margin: 0 auto;
	width: 100%;
	position: relative;
	z-index: 2;
}

/* 左栏：紧凑垂直堆叠 */
.hero__main {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-width: 0;
	gap: 0;
}

.hero__main .hero__lede {
	margin: 0 0 clamp(28px, 3.5vw, 40px);
	max-width: 560px;
}

/* 3. 右栏：垂直堆叠 stage + stats + scroll-hint */
.hero__side {
	display: flex;
	flex-direction: column;
	gap: clamp(24px, 3vw, 36px);
	min-width: 0;
}

/* Stage 缩小一些（之前 4/3 太高），让出空间给统计 */
.hero__stage {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 10;
	min-height: 240px;
	max-height: 380px;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	animation: hero-fade-in 1.2s var(--ease-out) 0.6s forwards;
}

/* 4. Stats 现在在右栏内（不再是全宽分离行） */
.hero__inner .hero__stats,
.hero__side .hero__stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	padding: 24px 0 0;
	border-top: 1px solid rgba(201, 169, 97, 0.18);
	margin: 0;
}

.hero__inner .hero__stats .stat,
.hero__side .hero__stats .stat {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.hero__inner .hero__stats .stat__num,
.hero__side .hero__stats .stat__num {
	font-family: var(--font-display);
	font-style: italic;
	font-size: clamp(36px, 4vw, 56px);
	font-weight: 600;
	line-height: 0.95;
	color: var(--zm-accent);
	letter-spacing: -0.02em;
	display: inline-block;
}

.hero__inner .hero__stats .stat__num::after,
.hero__side .hero__stats .stat__num::after {
	content: "+";
	margin-left: 0.04em;
	font-size: 0.55em;
	vertical-align: 0.4em;
	font-weight: 500;
}

.hero__inner .hero__stats .stat:nth-child(2) .stat__num::after,
.hero__side .hero__stats .stat:nth-child(2) .stat__num::after {
	content: "";
}

.hero__inner .hero__stats .stat__label,
.hero__side .hero__stats .stat__label {
	font-family: var(--font-mono);
	font-size: 10px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--zm-ink-3);
	margin-top: 4px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* 之前 v1.6 的 hero > .hero__stats 全宽行规则需要废止 */
.hero > .hero__stats { display: none !important; }
.hero > .hero__stats::after { display: none !important; }

/* 5. Scroll hint 在 stats 下方 */
.hero__scroll-hint {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 10px;
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.16em;
	color: var(--zm-ink-3);
	text-transform: lowercase;
	padding-top: 8px;
	margin-top: -8px;
}

.hero__scroll-hint svg {
	color: var(--zm-accent);
	animation: hero-scroll-bob 2.4s ease-in-out infinite;
}

@keyframes hero-scroll-bob {
	0%, 100% { transform: translateY(0); opacity: 0.6; }
	50%      { transform: translateY(4px); opacity: 1; }
}

/* 6. Hero 高度更紧凑（不需要 95vh，让内容自然支撑） */
.hero {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: auto;
	padding: clamp(120px, 14vh, 160px) clamp(40px, 5vw, 80px) clamp(80px, 10vh, 120px);
}

/* 7. 移动端：单栏垂直堆叠 */
@media (max-width: 960px) {
	.hero__inner {
		grid-template-columns: 1fr;
		gap: 40px;
		align-items: stretch;
	}
	.hero__stage {
		aspect-ratio: 16 / 10;
		min-height: 200px;
		max-height: 280px;
	}
	.hero__side {
		gap: 24px;
	}
	.hero__vertical { display: none; }
	.hero {
		padding-top: 100px;
		padding-bottom: 60px;
	}
}

@media (max-width: 600px) {
	.hero__inner .hero__stats,
	.hero__side .hero__stats { gap: 8px; }
	.hero__inner .hero__stats .stat__label,
	.hero__side .hero__stats .stat__label {
		font-size: 9px;
		letter-spacing: 0.1em;
	}
	.hero__stage { aspect-ratio: 4/3; }
}

/* 8. 旧的 hero__scroll 已删除，确保不残留样式 */
.hero__scroll, .hero__scroll-line, .hero__scroll-text { display: none !important; }


/* ═══════════════════════════════════════════════════
   v2.0 ADDITIONS — Category-based architecture
   ═══════════════════════════════════════════════════ */

/* --- Scene Tags (业务场景标签云) --- */
.services__scenes {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(201,169,97,.12);
}
.services__scenes-label {
  font-family: var(--wp--preset--font-family--mono, monospace);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--wp--preset--color--ink-3, #767264);
  margin-right: 8px;
}
.scene-tag {
  display: inline-block;
  padding: 6px 16px;
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--wp--preset--color--ink-2, #b8b4a8);
  border: 1px solid rgba(201,169,97,.2);
  transition: all .25s ease;
  text-decoration: none;
}
.scene-tag:hover {
  color: var(--wp--preset--color--accent, #c9a961);
  border-color: var(--wp--preset--color--accent, #c9a961);
  background: rgba(201,169,97,.06);
}

/* --- Case card tags --- */
.case-card__tags {
  display: block;
  font-family: var(--wp--preset--font-family--mono, monospace);
  font-size: 11px;
  letter-spacing: .1em;
  color: var(--wp--preset--color--accent, #c9a961);
  margin-top: 4px;
  opacity: .8;
}

/* --- Testimonials section (首页) --- */
.testimonials-section {
  padding: 96px 0 80px;
  background: var(--wp--preset--color--bg-2, #121218);
}
.testimonials-section__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-header--center {
  text-align: center;
  margin-bottom: 48px;
}
.section-header--center .section-header__eyebrow {
  justify-content: center;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.testimonials-grid--archive {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

/* --- Filter bar (案例归档页) --- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(201,169,97,.1);
}
.filter-bar__btn {
  padding: 8px 20px;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--wp--preset--color--ink-3, #767264);
  background: transparent;
  border: 1px solid rgba(201,169,97,.15);
  cursor: pointer;
  transition: all .25s ease;
  font-family: var(--wp--preset--font-family--sans-cn);
}
.filter-bar__btn:hover,
.filter-bar__btn.is-active {
  color: var(--wp--preset--color--bg, #0a0a0f);
  background: var(--wp--preset--color--accent, #c9a961);
  border-color: var(--wp--preset--color--accent, #c9a961);
}

/* --- Cases grid archive variant --- */
.cases__grid--archive {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}
.cases__grid--related {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

/* --- Single case layout --- */
.single-case__header {
  padding: 120px 0 48px;
}
.single-case__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.single-case__date {
  font-family: var(--wp--preset--font-family--mono, monospace);
  font-size: 12px;
  color: var(--wp--preset--color--ink-3, #767264);
  letter-spacing: .08em;
}
.single-case__title {
  font-family: var(--wp--preset--font-family--serif-cn);
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.15;
  color: var(--wp--preset--color--ink, #f5efe1);
  margin-bottom: 16px;
}
.single-case__lede {
  font-size: clamp(16px, 1.5vw, 19px);
  color: var(--wp--preset--color--ink-2, #b8b4a8);
  line-height: 1.7;
  max-width: 720px;
}
.single-case__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.single-case__hero-img {
  max-width: 1680px;
  margin: 0 auto;
}
.single-case__cover {
  width: 100%;
  height: auto;
  display: block;
}
.single-case__body {
  padding: 64px 0;
}
.single-case__cta {
  padding: 48px 0;
}
.single-case__related {
  padding: 64px 0 80px;
  background: var(--wp--preset--color--bg-2, #121218);
}

/* --- Single post layout --- */
.single-post__header {
  padding: 120px 0 32px;
}
.single-post__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.single-post__date {
  font-family: var(--wp--preset--font-family--mono, monospace);
  font-size: 12px;
  color: var(--wp--preset--color--ink-3, #767264);
  letter-spacing: .08em;
}
.single-post__title {
  font-family: var(--wp--preset--font-family--serif-cn);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.2;
  color: var(--wp--preset--color--ink, #f5efe1);
  margin-bottom: 16px;
}
.single-post__excerpt {
  font-size: clamp(16px, 1.5vw, 19px);
  color: var(--wp--preset--color--ink-2, #b8b4a8);
  line-height: 1.7;
}
.single-post__hero-img {
  margin: 32px 0;
}
.single-post__cover {
  width: 100%;
  height: auto;
  display: block;
}
.single-post__body {
  padding: 32px 0 64px;
}
.single-post__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(201,169,97,.12);
}

/* --- Post navigation --- */
.post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 40px 0;
  border-top: 1px solid rgba(201,169,97,.1);
  border-bottom: 1px solid rgba(201,169,97,.1);
}
.post-nav__link {
  text-decoration: none;
  display: block;
}
.post-nav__link--next {
  text-align: right;
}
.post-nav__label {
  display: block;
  font-family: var(--wp--preset--font-family--mono, monospace);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--wp--preset--color--ink-3, #767264);
  margin-bottom: 8px;
}
.post-nav__title {
  display: block;
  font-family: var(--wp--preset--font-family--serif-cn);
  font-size: 16px;
  color: var(--wp--preset--color--ink, #f5efe1);
  line-height: 1.4;
  transition: color .25s ease;
}
.post-nav__link:hover .post-nav__title {
  color: var(--wp--preset--color--accent, #c9a961);
}

/* --- Container narrow --- */
.container--narrow {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Page hero for bands --- */
.page-hero--bands .page-hero__title-cn,
.page-hero--bands .page-hero__title-en {
  display: block;
}

/* --- Bands content --- */
.bands-content {
  padding: 64px 0 80px;
}
.bands-content__editor {
  max-width: 1200px;
  margin: 0 auto;
}
.bands-placeholder {
  text-align: center;
  padding: 80px 24px;
  border: 1px dashed rgba(201,169,97,.2);
}
.bands-placeholder__hint {
  font-size: 16px;
  color: var(--wp--preset--color--ink-2, #b8b4a8);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.bands-placeholder__sub {
  font-size: 13px;
  color: var(--wp--preset--color--ink-3, #767264);
  margin-top: 12px;
}

/* --- CTA compact variant --- */
.cta-section--compact {
  padding: 48px 0 64px;
}
.cta-section--compact .cta-section__inner {
  text-align: center;
}

/* --- Archive page hero --- */
.page-hero--archive {
  padding: 120px 0 48px;
}

/* --- Archive empty state --- */
.archive-empty {
  text-align: center;
  padding: 80px 0;
  color: var(--wp--preset--color--ink-3, #767264);
  font-style: italic;
}

/* --- Archive containers --- */
.archive-cases,
.archive-testimonials,
.archive-news {
  padding: 48px 0 80px;
}

/* --- Eyebrow link (back link) --- */
.eyebrow {
  text-decoration: none;
  transition: color .25s ease;
}
a.eyebrow:hover {
  color: var(--wp--preset--color--accent-2, #e8c987);
}

/* --- Pagination --- */
.pagination,
.nav-links {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(201,169,97,.08);
}
.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 13px;
  letter-spacing: .06em;
  color: var(--wp--preset--color--ink-3, #767264);
  border: 1px solid rgba(201,169,97,.15);
  text-decoration: none;
  transition: all .25s ease;
}
.page-numbers.current,
.page-numbers:hover {
  color: var(--wp--preset--color--bg, #0a0a0f);
  background: var(--wp--preset--color--accent, #c9a961);
  border-color: var(--wp--preset--color--accent, #c9a961);
}
.page-numbers.prev,
.page-numbers.next {
  width: auto;
  padding: 0 16px;
}

/* --- News list archive variant --- */
.news__list--archive {
  max-width: 960px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .filter-bar { overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; }
  .filter-bar__btn { white-space: nowrap; }
  .post-nav { grid-template-columns: 1fr; }
  .services__scenes { gap: 6px; }
  .scene-tag { font-size: 11px; padding: 4px 12px; }
}
