:root {
	--ink: #18211d;
	--ink-soft: #3f4b45;
	--muted: #6b756f;
	--paper: #f5f6f4;
	--surface: #ffffff;
	--line: #dde3df;
	--brand: #0f766e;
	--brand-dark: #0b4f4a;
	--accent: #d9772e;
	--danger: #b3261e;
	--radius: 8px;
	--shadow: 0 1px 2px rgba(24, 33, 29, 0.06), 0 4px 12px rgba(24, 33, 29, 0.05);
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Noto Sans SC", "Microsoft YaHei", sans-serif;
	color: var(--ink);
	background: var(--paper);
	line-height: 1.65;
	font-size: 16px;
	letter-spacing: 0;
}

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

a {
	color: var(--brand);
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

a:hover {
	color: var(--brand-dark);
}

h1,
h2,
h3,
p,
ol,
ul {
	margin-top: 0;
}

h1,
h2,
h3 {
	line-height: 1.25;
	letter-spacing: 0;
}

.container {
	max-width: 1160px;
	margin: 0 auto;
	padding: 0 20px;
}

.skip-link,
.screen-reader-text {
	position: absolute;
	left: -9999px;
}

.skip-link:focus {
	left: 8px;
	top: 8px;
	z-index: 100;
	padding: 8px 14px;
	background: var(--surface);
	border: 1px solid var(--brand);
	border-radius: var(--radius);
}

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

.site-header {
	background: var(--surface);
	border-bottom: 1px solid var(--line);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	min-height: 64px;
}

.site-brand {
	margin: 0;
}

.site-brand__name {
	font-size: 20px;
	font-weight: 700;
	color: var(--ink);
	text-decoration: none;
}

.primary-nav ul {
	display: flex;
	gap: 4px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.primary-nav a {
	display: block;
	padding: 8px 12px;
	color: var(--ink-soft);
	text-decoration: none;
	border-radius: var(--radius);
}

.primary-nav a:hover {
	color: var(--brand);
	background: #eef4f2;
}

.nav-toggle {
	display: none;
	width: 42px;
	height: 42px;
	border: 1px solid var(--line);
	background: var(--surface);
	border-radius: var(--radius);
	cursor: pointer;
}

.nav-toggle__bar {
	display: block;
	width: 18px;
	height: 2px;
	margin: 5px auto;
	background: var(--ink);
}

.site-main {
	min-height: 60vh;
}

.hero {
	background: var(--brand-dark);
	color: #f5faf8;
	background-image: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 22px);
}

.hero__inner {
	padding: 72px 20px 84px;
}

.hero__content {
	max-width: 760px;
}

.hero h1 {
	font-size: 40px;
	margin-bottom: 16px;
}

.hero p {
	font-size: 18px;
	color: #cfe3dd;
	max-width: 620px;
}

.eyebrow {
	font-size: 14px;
	font-weight: 600;
	color: var(--accent);
	text-transform: none;
	margin-bottom: 8px;
}

.hero .eyebrow {
	color: #f2b57f;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 10px 20px;
	border-radius: var(--radius);
	border: 1px solid transparent;
	text-decoration: none;
	font-weight: 600;
	cursor: pointer;
}

.btn--primary {
	background: var(--brand);
	color: #fff;
}

.btn--primary:hover {
	background: var(--brand-dark);
	color: #fff;
}

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

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

.hero .btn--ghost {
	color: #f5faf8;
	border-color: rgba(255, 255, 255, 0.5);
}

.hero .btn--ghost:hover {
	border-color: #fff;
	color: #fff;
}

.btn--small {
	min-height: 34px;
	padding: 5px 12px;
	font-size: 14px;
}

.section {
	padding: 56px 0;
}

.section--alt {
	background: var(--surface);
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}

.section__head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 24px;
}

.section__head h2 {
	font-size: 26px;
	margin: 0;
}

.text-link {
	font-weight: 600;
	white-space: nowrap;
}

.page-band {
	padding-top: 36px;
	padding-bottom: 8px;
}

.page-title {
	font-size: 32px;
	margin: 10px 0 12px;
}

.muted {
	color: var(--muted);
}

.breadcrumb {
	font-size: 13px;
}

.breadcrumb ol {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.breadcrumb li + li::before {
	content: "/";
	color: var(--muted);
	margin-right: 6px;
}

.card-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 16px;
}

.card {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 16px;
	box-shadow: var(--shadow);
	display: block;
	text-decoration: none;
	color: var(--ink);
}

.card:hover {
	border-color: var(--brand);
}

.card__title {
	font-size: 17px;
	margin: 10px 0 6px;
	line-height: 1.35;
}

.card__title a {
	color: var(--ink);
	text-decoration: none;
}

.card__title a:hover {
	color: var(--brand);
}

.card--sport {
	min-height: 150px;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.card__sport-mark {
	width: 44px;
	height: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #e7f0ee;
	color: var(--brand);
	border-radius: var(--radius);
	font-weight: 700;
	font-size: 20px;
	margin-bottom: 10px;
}

.card__media {
	display: block;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	border-radius: var(--radius);
	background: #e8efec;
}

.card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.placeholder-image {
	position: relative;
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	border-radius: var(--radius);
	background: #e8efec;
}

.placeholder-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.9;
}

.placeholder-image__label {
	position: absolute;
	left: 10px;
	bottom: 10px;
	padding: 4px 10px;
	background: rgba(24, 33, 29, 0.72);
	color: #fff;
	font-size: 13px;
	border-radius: var(--radius);
}

.city-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.city-list a {
	display: inline-flex;
	align-items: center;
	min-height: 40px;
	padding: 6px 14px;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	color: var(--ink-soft);
	text-decoration: none;
}

.city-list a:hover {
	border-color: var(--brand);
	color: var(--brand);
}

.city-list--grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

.city-list--grid a {
	width: 100%;
	justify-content: space-between;
}

.steps {
	display: grid;
	grid-template-columns: repeat(8, 1fr);
	gap: 10px;
	list-style: none;
	margin: 0;
	padding: 0;
	counter-reset: step;
}

.steps li {
	counter-increment: step;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 12px 10px;
	font-size: 14px;
	font-weight: 600;
	text-align: center;
}

.steps li::before {
	content: counter(step, decimal-leading-zero);
	display: block;
	color: var(--accent);
	font-size: 13px;
	margin-bottom: 4px;
}

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

.guide-list li + li {
	border-top: 1px solid var(--line);
}

.guide-list a {
	display: block;
	padding: 14px 4px;
	font-weight: 600;
	text-decoration: none;
	color: var(--ink);
}

.guide-list a:hover {
	color: var(--brand);
}

.guide-list--large a {
	padding: 20px 4px 6px;
	font-size: 20px;
}

.guide-list--large p {
	margin: 0 0 16px;
	color: var(--muted);
}

.prose h2 {
	font-size: 24px;
	margin-top: 32px;
}

.prose ul,
.prose ol {
	padding-left: 22px;
}

.meta-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 15px;
	margin: 20px 0;
}

.meta-table th,
.meta-table td {
	border-bottom: 1px solid var(--line);
	padding: 9px 10px;
	text-align: left;
	vertical-align: top;
}

.meta-table th {
	width: 96px;
	color: var(--muted);
	font-weight: 500;
}

.product-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
	gap: 36px;
	align-items: start;
}

.product-media .placeholder-image,
.product-media .wp-post-image {
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}

.product-sport {
	margin-bottom: 14px;
}

.product-cta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 24px;
}

.next-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
}

.next-card {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 20px 16px;
	text-decoration: none;
	color: var(--ink);
	display: flex;
	flex-direction: column;
	gap: 8px;
	min-height: 150px;
}

.next-card:hover {
	border-color: var(--brand);
	color: var(--ink);
}

.next-card__index {
	color: var(--accent);
	font-weight: 700;
	font-size: 14px;
}

.next-card__title {
	font-weight: 700;
	font-size: 17px;
}

.next-card span:last-child {
	color: var(--muted);
	font-size: 14px;
}

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

.process-list li {
	display: flex;
	gap: 18px;
	padding: 22px 0;
	border-bottom: 1px solid var(--line);
}

.process-list li:first-child {
	border-top: 1px solid var(--line);
}

.process-list__num {
	flex: 0 0 44px;
	width: 44px;
	height: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--brand);
	color: #fff;
	border-radius: var(--radius);
	font-weight: 700;
}

.process-list h2 {
	font-size: 20px;
	margin-bottom: 4px;
}

.process-list p {
	color: var(--muted);
	margin-bottom: 0;
}

.contact-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.contact-card {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 24px;
}

.wechat-row {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}

.check-list {
	margin: 12px 0 16px;
	padding-left: 20px;
}

.check-list li {
	margin-bottom: 6px;
}

.cta-strip {
	background: var(--brand-dark);
	color: #f5faf8;
}

.cta-strip__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding-top: 44px;
	padding-bottom: 44px;
	flex-wrap: wrap;
}

.cta-strip h2 {
	margin-bottom: 6px;
	font-size: 26px;
}

.cta-strip p {
	color: #cfe3dd;
	margin-bottom: 0;
}

.cta-strip .btn--primary {
	background: var(--accent);
}

.cta-strip .btn--primary:hover {
	background: #b9621f;
}

.site-footer {
	background: #101613;
	color: #b9c4bf;
	padding: 48px 0 20px;
}

.site-footer__grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 28px;
	padding-bottom: 28px;
}

.site-footer__title {
	color: #fff;
	font-weight: 700;
}

.site-footer ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-footer li {
	margin-bottom: 6px;
}

.site-footer a {
	color: #b9c4bf;
	text-decoration: none;
}

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

.site-footer__meta {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	padding-top: 16px;
	font-size: 13px;
}

.empty-state {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 48px 24px;
	text-align: center;
}

@media (max-width: 900px) {
	.steps {
		grid-template-columns: repeat(4, 1fr);
	}

	.next-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.product-layout,
	.contact-layout {
		grid-template-columns: 1fr;
	}

	.site-footer__grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 640px) {
	.hero__inner {
		padding: 48px 20px 56px;
	}

	.hero h1 {
		font-size: 30px;
	}

	.nav-toggle {
		display: block;
	}

	.primary-nav {
		display: none;
		position: absolute;
		top: 64px;
		left: 0;
		right: 0;
		background: var(--surface);
		border-bottom: 1px solid var(--line);
		box-shadow: var(--shadow);
	}

	.primary-nav.is-open {
		display: block;
	}

	.primary-nav ul {
		flex-direction: column;
		padding: 8px;
	}

	.steps {
		grid-template-columns: repeat(2, 1fr);
	}

	.next-grid {
		grid-template-columns: 1fr;
	}

	.site-footer__grid {
		grid-template-columns: 1fr;
	}

	.section {
		padding: 40px 0;
	}

	.page-title {
		font-size: 26px;
	}
}
