/* =============================================================
   夜阑 Yelan — 主样式表
   墨檀底色 · 琥珀烛光 · 蜜蜡文字 · 胭脂点缀
   ============================================================= */

/* ---------- 设计令牌 ---------- */
:root {
	--ink: #17120d;            /* 墨檀 · 页面底色 */
	--ink-2: #1e1710;          /* 抬升层 */
	--ink-3: #241c13;          /* 卡片 */
	--amber: #c98a3d;          /* 琥珀 · 主强调 */
	--amber-bright: #e4ab5d;   /* 琥珀高光 */
	--wax: #efe3cb;            /* 蜜蜡 · 主文字 */
	--wax-body: #ddcfb2;       /* 正文 */
	--wax-dim: #b0a084;        /* 次要文字 */
	--rouge: #8a2f35;          /* 胭脂 · 座椅皮革红 */
	--rouge-bright: #a9414a;
	--line: rgba(201, 138, 61, 0.28);       /* 琥珀细线 */
	--line-soft: rgba(239, 227, 203, 0.12); /* 柔和细线 */

	--font-display: "Didot", "Bodoni MT", "Bodoni 72", "Playfair Display",
		"Songti SC", "STSongti-SC", "STSong", "SimSun", serif;
	--font-body: "PingFang SC", "Hiragino Sans GB", "Source Han Sans SC",
		"Noto Sans CJK SC", "Microsoft YaHei", -apple-system, "Segoe UI",
		Helvetica, Arial, sans-serif;
}

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

html {
	scroll-behavior: smooth;
}

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

/* 细颗粒噪点，覆在整页之上，让暗色不发闷 */
body::before {
	content: "";
	position: fixed;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	opacity: 0.05;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
}

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

a {
	color: var(--amber-bright);
	text-decoration-thickness: 1px;
	text-underline-offset: 4px;
}

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

:focus-visible {
	outline: 2px solid var(--amber-bright);
	outline-offset: 3px;
}

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

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

.container--narrow {
	max-width: 880px;
}

/* ---------- 无障碍工具 ---------- */
.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
	border: 0;
}

.skip-link {
	position: absolute;
	top: -60px;
	left: 16px;
	z-index: 200;
	padding: 10px 18px;
	background: var(--amber);
	color: var(--ink);
	font-size: 13px;
	letter-spacing: 0.1em;
	text-decoration: none;
	transition: top 0.2s ease;
}

.skip-link:focus {
	top: 12px;
}

/* ---------- 按钮 ---------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5em;
	padding: 0.85em 1.9em;
	border: 1px solid var(--amber);
	background: transparent;
	color: var(--amber-bright);
	font-family: var(--font-body);
	font-size: 13px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.22em;
	text-decoration: none;
	cursor: pointer;
	transition: background-color 0.25s ease, color 0.25s ease,
		border-color 0.25s ease;
}

.btn:hover {
	background: var(--amber);
	color: var(--ink);
}

.btn--solid {
	background: var(--rouge);
	border-color: var(--rouge);
	color: var(--wax);
}

.btn--solid:hover {
	background: var(--rouge-bright);
	border-color: var(--rouge-bright);
	color: #fff;
}

.btn--big {
	padding: 1.1em 2.6em;
	font-size: 14px;
}

/* ---------- 眉题（章节编号） ---------- */
.eyebrow {
	display: flex;
	align-items: center;
	gap: 14px;
	margin: 0 0 18px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--amber);
}

.eyebrow--center {
	justify-content: center;
}

.eyebrow__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border: 1px solid var(--line);
	font-family: var(--font-display);
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 0;
	color: var(--amber-bright);
}

.eyebrow__en {
	font-weight: 500;
	letter-spacing: 0.28em;
	color: var(--wax-dim);
}

/* ---------- 章节外壳 ---------- */
.section {
	position: relative;
	padding: clamp(84px, 11vw, 150px) 0;
}

.section__head {
	text-align: center;
	margin-bottom: clamp(44px, 6vw, 72px);
}

.section__title {
	margin: 0;
	font-family: var(--font-display);
	font-weight: 500;
	font-size: clamp(1.9rem, 4vw, 3rem);
	letter-spacing: 0.08em;
	color: var(--wax);
	text-wrap: balance;
}

.section__footnote {
	margin: 44px 0 0;
	text-align: center;
	font-size: 13px;
	letter-spacing: 0.14em;
	color: var(--wax-dim);
}

/* ---------- 页头导航 ---------- */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	padding-block: 18px;
	transition: background-color 0.3s ease, padding 0.3s ease,
		border-color 0.3s ease;
	border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
	padding-block: 12px;
	background: rgba(23, 18, 13, 0.88);
	-webkit-backdrop-filter: blur(14px);
	backdrop-filter: blur(14px);
	border-bottom-color: var(--line-soft);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.site-brand__name {
	font-family: var(--font-display);
	font-size: 1.35rem;
	letter-spacing: 0.18em;
	color: var(--wax);
	text-decoration: none;
	transition: color 0.2s ease;
}

.site-brand__name:hover {
	color: var(--amber-bright);
}

.custom-logo-link {
	display: block;
	line-height: 0;
}

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

.site-nav {
	display: flex;
	align-items: center;
	gap: 34px;
}

.site-nav__list {
	display: flex;
	align-items: center;
	gap: 30px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-nav__list a {
	display: inline-block;
	padding: 6px 0;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.2em;
	color: var(--wax-dim);
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: color 0.2s ease, border-color 0.2s ease;
}

.site-nav__list a:hover,
.site-nav__list .current-menu-item > a,
.site-nav__list .current_page_item > a {
	color: var(--amber-bright);
	border-bottom-color: var(--amber);
}

.site-nav__cta {
	white-space: nowrap;
}

/* 移动端汉堡按钮（桌面隐藏） */
.nav-toggle {
	display: none;
	position: relative;
	z-index: 110;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 6px;
	width: 44px;
	height: 40px;
	border: 1px solid var(--line);
	background: none;
	cursor: pointer;
}

.nav-toggle__bar {
	width: 18px;
	height: 1.5px;
	background: var(--wax);
	transition: transform 0.25s ease, opacity 0.25s ease;
}

body.nav-open .nav-toggle__bar:nth-child(1) {
	transform: translateY(3.75px) rotate(45deg);
}

body.nav-open .nav-toggle__bar:nth-child(2) {
	transform: translateY(-3.75px) rotate(-45deg);
}

/* ---------- 首屏 ---------- */
.hero {
	position: relative;
	display: grid;
	grid-template-columns: clamp(76px, 9vw, 120px) 1fr;
	grid-template-rows: 1fr auto;
	min-height: 100svh;
	overflow: hidden;
	background-color: var(--ink);
	background-size: cover;
	background-position: center;
}

/* 自带烛光渐变（未设置背景图时也有氛围） */
.hero::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background:
		radial-gradient(1200px 620px at 52% -10%, rgba(201, 138, 61, 0.16), transparent 60%),
		radial-gradient(720px 400px at 12% 110%, rgba(138, 47, 53, 0.13), transparent 65%);
}

/* 设置了背景图时压一层暗色 */
.hero--has-image::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	background: linear-gradient(
		180deg,
		rgba(23, 18, 13, 0.82),
		rgba(23, 18, 13, 0.68) 45%,
		rgba(23, 18, 13, 0.92)
	);
}

.hero > * {
	position: relative;
	z-index: 1;
}

/* 竖排灯箱招牌 —— 主题的签名元素 */
.hero__sign {
	grid-column: 1;
	grid-row: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	border-right: 1px solid var(--line-soft);
	padding: 110px 0 40px;
}

.hero__sign-text {
	writing-mode: vertical-rl;
	font-family: var(--font-display);
	font-size: clamp(1.4rem, 2.4vw, 2rem);
	font-weight: 500;
	letter-spacing: 0.55em;
	color: var(--amber-bright);
	border: 1px solid var(--line);
	padding: 30px 13px 14px;
	text-shadow:
		0 0 14px rgba(228, 171, 93, 0.55),
		0 0 46px rgba(201, 138, 61, 0.28);
	animation: yelan-flicker 7s infinite;
}

@keyframes yelan-flicker {
	0%, 100% { opacity: 1; }
	7%  { opacity: 0.85; }
	9%  { opacity: 1; }
	41% { opacity: 0.92; }
	43% { opacity: 1; }
	68% { opacity: 0.87; }
	71% { opacity: 1; }
}

.hero__body {
	grid-column: 2;
	grid-row: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 130px 24px 56px;
}

.hero__inner {
	max-width: 820px;
	text-align: center;
}

.hero__note {
	margin: 0 0 28px;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.34em;
	text-transform: uppercase;
	color: var(--amber);
}

.hero__title {
	margin: 0 0 20px;
	font-family: var(--font-display);
	font-weight: 500;
	font-size: clamp(2.3rem, 6.6vw, 4.6rem);
	letter-spacing: 0.14em;
	color: var(--wax);
	text-wrap: balance;
}

.hero__sub {
	margin: 0 0 46px;
	font-family: var(--font-display);
	font-style: italic;
	font-size: clamp(1rem, 1.8vw, 1.25rem);
	letter-spacing: 0.12em;
	color: var(--wax-dim);
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 16px;
}

/* 今夜播报横条 */
.hero__strip {
	grid-column: 1 / -1;
	grid-row: 2;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 10px 18px;
	padding: 16px 24px;
	border-top: 1px solid var(--line-soft);
	font-size: 12.5px;
	font-weight: 500;
	letter-spacing: 0.14em;
	color: var(--wax-dim);
}

.hero__strip-item--live {
	color: var(--amber-bright);
}

.hero__strip-item--live::before {
	content: "●";
	margin-right: 10px;
	font-size: 8px;
	vertical-align: 2px;
	color: var(--rouge-bright);
	animation: yelan-pulse 2.2s ease-in-out infinite;
}

@keyframes yelan-pulse {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.35; }
}

.hero__strip-dot {
	font-size: 8px;
	color: var(--line);
}

/* ---------- 壹 · 关于 ---------- */
.about__grid {
	display: grid;
	grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
	gap: clamp(40px, 6vw, 90px);
	align-items: center;
}

.about__prose p {
	margin: 0 0 1.3em;
	max-width: 56ch;
	font-size: 16px;
	line-height: 2.1;
	letter-spacing: 0.03em;
	color: var(--wax-body);
}

.about__facts {
	margin: 36px 0 0;
	padding-top: 22px;
	border-top: 1px solid var(--line-soft);
	font-size: 12.5px;
	font-weight: 500;
	letter-spacing: 0.22em;
	color: var(--amber);
}

.about__collage {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 18px;
	padding-right: 12px;
}

.about__frame {
	position: relative;
	margin: 0;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 1 / 1;
	border: 1px solid var(--line);
	background: linear-gradient(160deg, #241c13, #1a140f);
}

.about__frame--1 {
	grid-row: 1 / span 2;
	aspect-ratio: auto;
}

.about__frame--3 {
	transform: translate(12px, 12px);
}

.about__frame img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	filter: saturate(0.85) contrast(1.03);
}

.about__frame-word {
	font-family: var(--font-display);
	font-size: clamp(3rem, 6vw, 4.5rem);
	letter-spacing: 0.1em;
	color: rgba(201, 138, 61, 0.26);
	user-select: none;
}

/* ---------- 貳 · 酒单 ---------- */
.menu-card {
	position: relative;
	padding: clamp(36px, 6vw, 72px) clamp(24px, 6vw, 76px);
	background: linear-gradient(180deg, #201810, #1b1410);
	border: 1px solid var(--line);
	outline: 1px solid rgba(201, 138, 61, 0.14);
	outline-offset: 7px;
}

/* 上下边线中央的菱形饰针，像真菜单卡的装订 */
.menu-card::before,
.menu-card::after {
	content: "◆";
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	padding: 0 12px;
	background: var(--ink);
	font-size: 11px;
	line-height: 1;
	color: var(--amber);
}

.menu-card::before {
	top: -6px;
}

.menu-card::after {
	bottom: -6px;
}

.menu-card__group {
	margin-bottom: clamp(36px, 5vw, 56px);
}

.menu-card__group:last-of-type {
	margin-bottom: 0;
}

.menu-card__cat {
	display: flex;
	align-items: baseline;
	gap: 14px;
	margin: 0 0 22px;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--line-soft);
	font-family: var(--font-display);
	font-weight: 500;
	font-size: 1.35rem;
	letter-spacing: 0.14em;
	color: var(--amber-bright);
}

.menu-card__cat-en {
	font-family: var(--font-display);
	font-style: italic;
	font-size: 0.85rem;
	letter-spacing: 0.08em;
	color: var(--wax-dim);
}

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

.menu-card__item {
	margin-bottom: 18px;
}

.menu-card__item:last-child {
	margin-bottom: 0;
}

.menu-card__row {
	display: flex;
	align-items: baseline;
	gap: 12px;
}

.menu-card__name {
	font-size: 16.5px;
	font-weight: 500;
	letter-spacing: 0.05em;
	color: var(--wax);
}

.menu-card__star {
	margin-right: 6px;
	font-size: 10px;
	vertical-align: 2px;
	color: var(--rouge-bright);
}

.menu-card__en {
	margin-left: 8px;
	font-family: var(--font-display);
	font-style: italic;
	font-weight: 400;
	font-size: 13.5px;
	letter-spacing: 0.04em;
	color: var(--wax-dim);
}

/* 点线引导——酒名与价格之间 */
.menu-card__leader {
	flex: 1;
	min-width: 24px;
	border-bottom: 1px dotted rgba(201, 138, 61, 0.42);
	transform: translateY(-4px);
}

.menu-card__price {
	font-variant-numeric: tabular-nums;
	font-weight: 500;
	font-size: 15px;
	letter-spacing: 0.06em;
	white-space: nowrap;
	color: var(--amber-bright);
}

.menu-card__desc {
	margin: 5px 0 0;
	font-size: 13px;
	line-height: 1.7;
	letter-spacing: 0.06em;
	color: var(--wax-dim);
}

.menu-card__note {
	margin: 44px 0 0;
	padding-top: 22px;
	border-top: 1px solid var(--line-soft);
	text-align: center;
	font-size: 12.5px;
	letter-spacing: 0.16em;
	color: var(--wax-dim);
}

/* ---------- 叁 · 演出 ---------- */
.events__list {
	border-top: 1px solid var(--line-soft);
}

.event {
	display: grid;
	grid-template-columns: 96px 1fr auto;
	gap: 24px;
	align-items: center;
	padding: 26px 12px;
	border-bottom: 1px solid var(--line-soft);
	transition: background-color 0.25s ease;
}

.event:hover {
	background: rgba(201, 138, 61, 0.05);
}

.event__date {
	padding-right: 24px;
	border-right: 1px solid var(--line-soft);
	text-align: center;
}

.event__date-big {
	display: block;
	font-family: var(--font-display);
	font-size: 2.3rem;
	line-height: 1;
	color: var(--amber-bright);
}

.event__date-small {
	display: block;
	margin-top: 8px;
	font-size: 11px;
	letter-spacing: 0.2em;
	color: var(--wax-dim);
}

.event__title {
	margin: 0 0 6px;
	font-family: var(--font-display);
	font-weight: 500;
	font-size: 1.25rem;
	letter-spacing: 0.08em;
	color: var(--wax);
}

.event__title a {
	color: inherit;
	text-decoration: none;
	transition: color 0.2s ease;
}

.event__title a:hover {
	color: var(--amber-bright);
}

.event__desc {
	margin: 0;
	font-size: 13.5px;
	line-height: 1.8;
	letter-spacing: 0.04em;
	color: var(--wax-dim);
}

.event__meta {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 8px;
}

.event__tag {
	padding: 5px 10px;
	border: 1px solid rgba(169, 65, 74, 0.5);
	font-size: 10.5px;
	font-weight: 600;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--rouge-bright);
}

.event__time {
	font-variant-numeric: tabular-nums;
	font-size: 14px;
	letter-spacing: 0.1em;
	color: var(--amber-bright);
}

/* ---------- 肆 · 到访 ---------- */
.visit {
	border-top: 1px solid var(--line-soft);
	background: radial-gradient(
		900px 420px at 50% 118%,
		rgba(138, 47, 53, 0.13),
		transparent 65%
	);
}

.visit__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(28px, 4vw, 56px);
	max-width: 1000px;
	margin: 0 auto;
	text-align: center;
}

.visit__label {
	margin: 0 0 16px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--amber);
}

.visit__col p {
	margin: 0 0 8px;
	font-size: 15px;
	line-height: 1.9;
	letter-spacing: 0.05em;
	color: var(--wax);
}

.visit__col p.visit__muted {
	font-size: 13px;
	color: var(--wax-dim);
}

.visit__col a {
	color: var(--wax);
	transition: color 0.2s ease;
}

.visit__col a:hover {
	color: var(--amber-bright);
}

.visit__cta {
	margin-top: clamp(44px, 6vw, 70px);
	text-align: center;
}

/* ---------- 页脚 ---------- */
.site-footer {
	padding: clamp(56px, 7vw, 90px) 0 34px;
	border-top: 1px solid var(--line);
	background: #120e0a;
}

.site-footer__grid {
	display: grid;
	grid-template-columns: 1.3fr 1fr 1fr 1fr;
	gap: 40px;
	margin-bottom: 48px;
}

.site-footer__sign {
	display: inline-block;
	writing-mode: vertical-rl;
	padding: 16px 9px;
	border: 1px solid var(--line);
	font-family: var(--font-display);
	font-size: 1.15rem;
	letter-spacing: 0.4em;
	color: var(--amber-bright);
}

.site-footer__tag {
	margin: 16px 0 0;
	font-family: var(--font-display);
	font-style: italic;
	font-size: 13px;
	letter-spacing: 0.08em;
	color: var(--wax-dim);
}

.site-footer__title {
	margin: 0 0 14px;
	font-size: 11.5px;
	font-weight: 600;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--amber);
}

.site-footer__col p {
	margin: 0 0 7px;
	font-size: 13.5px;
	letter-spacing: 0.05em;
	color: var(--wax-dim);
}

.site-footer__col a {
	color: var(--wax-dim);
	transition: color 0.2s ease;
}

.site-footer__col a:hover {
	color: var(--amber-bright);
}

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

.site-footer__nav li {
	margin-bottom: 7px;
}

.site-footer__nav a {
	font-size: 13.5px;
	letter-spacing: 0.08em;
	color: var(--wax-dim);
	text-decoration: none;
	transition: color 0.2s ease;
}

.site-footer__nav a:hover {
	color: var(--amber-bright);
}

.site-footer__widgets {
	margin-bottom: 40px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 32px;
}

.footer-widget__title {
	margin: 0 0 12px;
	font-size: 11.5px;
	font-weight: 600;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--amber);
}

.site-footer__bottom {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 14px;
	padding-top: 22px;
	border-top: 1px solid var(--line-soft);
	font-size: 12px;
	letter-spacing: 0.12em;
	color: var(--wax-dim);
}

.site-footer__bottom p {
	margin: 0;
}

.site-footer__sep {
	margin: 0 8px;
	font-size: 9px;
	color: var(--line);
}

/* ---------- 内页公共 ---------- */
.site-main--inner {
	padding: 176px 0 110px;
}

.page-head {
	text-align: center;
	margin-bottom: 64px;
}

.page-head__title {
	margin: 0;
	font-family: var(--font-display);
	font-weight: 500;
	font-size: clamp(1.9rem, 4vw, 2.8rem);
	letter-spacing: 0.08em;
	color: var(--wax);
}

.page-head__desc {
	margin-top: 14px;
	color: var(--wax-dim);
}

/* 文章列表卡片 */
.post-list {
	border-top: 1px solid var(--line-soft);
}

.post-card {
	padding: 36px 0;
	border-bottom: 1px solid var(--line-soft);
}

.post-card__date {
	font-size: 11.5px;
	font-weight: 500;
	letter-spacing: 0.26em;
	color: var(--amber);
}

.post-card__title {
	margin: 10px 0 12px;
	font-family: var(--font-display);
	font-weight: 500;
	font-size: 1.5rem;
	letter-spacing: 0.06em;
}

.post-card__title a {
	color: var(--wax);
	text-decoration: none;
	transition: color 0.2s ease;
}

.post-card__title a:hover {
	color: var(--amber-bright);
}

.post-card__excerpt p {
	margin: 0;
	font-size: 14.5px;
	line-height: 1.9;
	color: var(--wax-dim);
}

.post-card__more {
	display: inline-block;
	margin-top: 14px;
	font-size: 12.5px;
	font-weight: 500;
	letter-spacing: 0.2em;
	color: var(--amber-bright);
	text-decoration: none;
}

.post-card__more:hover {
	text-decoration: underline;
	text-underline-offset: 5px;
}

/* 单篇内容 */
.entry__head {
	text-align: center;
	margin-bottom: 44px;
}

.entry__title {
	margin: 0;
	font-family: var(--font-display);
	font-weight: 500;
	font-size: clamp(1.9rem, 4.4vw, 3rem);
	letter-spacing: 0.08em;
	color: var(--wax);
	text-wrap: balance;
}

.entry__meta {
	margin-top: 14px;
	font-size: 13.5px;
	letter-spacing: 0.1em;
	color: var(--wax-dim);
}

.entry__thumb {
	margin: 0 0 44px;
	border: 1px solid var(--line-soft);
	line-height: 0;
}

.entry__thumb img {
	width: 100%;
}

.entry__content {
	font-size: 16px;
	line-height: 2.05;
	letter-spacing: 0.03em;
	color: var(--wax-body);
}

.entry__content > * {
	margin-top: 0;
	margin-bottom: 1.5em;
}

.entry__content h2,
.entry__content h3,
.entry__content h4 {
	margin-top: 2.2em;
	margin-bottom: 0.8em;
	font-family: var(--font-display);
	font-weight: 500;
	letter-spacing: 0.06em;
	color: var(--wax);
	line-height: 1.4;
}

.entry__content h2 {
	font-size: 1.7rem;
}

.entry__content h3 {
	font-size: 1.35rem;
}

.entry__content h4 {
	font-size: 1.1rem;
}

.entry__content blockquote {
	margin: 2em 0;
	padding: 6px 0 6px 26px;
	border-left: 2px solid var(--amber);
	font-family: var(--font-display);
	font-style: italic;
	font-size: 1.1em;
	color: var(--wax-dim);
}

.entry__content blockquote p {
	margin-bottom: 0.6em;
}

.entry__content ul,
.entry__content ol {
	padding-left: 1.4em;
}

.entry__content li {
	margin-bottom: 0.5em;
}

.entry__content img {
	border: 1px solid var(--line-soft);
}

.entry__content figure {
	margin-left: 0;
	margin-right: 0;
}

.entry__content figcaption,
.wp-caption-text {
	margin-top: 10px;
	font-size: 12.5px;
	letter-spacing: 0.08em;
	text-align: center;
	color: var(--wax-dim);
}

.entry__content code {
	padding: 2px 7px;
	background: var(--ink-3);
	border: 1px solid var(--line-soft);
	font-size: 0.88em;
}

.entry__content pre {
	padding: 20px;
	background: var(--ink-3);
	border: 1px solid var(--line-soft);
	overflow-x: auto;
	line-height: 1.7;
}

.entry__content pre code {
	padding: 0;
	background: none;
	border: 0;
}

.entry__content hr {
	margin: 3em auto;
	border: 0;
	border-top: 1px solid var(--line-soft);
}

.entry__content table {
	width: 100%;
	border-collapse: collapse;
	font-size: 14.5px;
}

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

.entry__content th {
	color: var(--amber-bright);
	font-weight: 600;
	letter-spacing: 0.06em;
}

.entry__content .alignfull,
.entry__content .alignwide {
	max-width: 100%;
}

.entry__pages {
	margin-top: 30px;
	letter-spacing: 0.1em;
	color: var(--wax-dim);
}

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

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

.pagination .page-numbers {
	min-width: 40px;
	padding: 9px 13px;
	border: 1px solid var(--line-soft);
	font-size: 13px;
	letter-spacing: 0.08em;
	color: var(--wax-dim);
	text-decoration: none;
	transition: border-color 0.2s ease, color 0.2s ease;
}

.pagination a.page-numbers:hover {
	border-color: var(--amber);
	color: var(--amber-bright);
}

.pagination .page-numbers.current {
	border-color: var(--amber);
	color: var(--amber-bright);
}

/* ---------- 表单 ---------- */
input[type="text"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="password"],
textarea {
	width: 100%;
	padding: 13px 16px;
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid var(--line-soft);
	color: var(--wax);
	font-family: var(--font-body);
	font-size: 15px;
	letter-spacing: 0.04em;
	transition: border-color 0.2s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="password"]:focus,
textarea:focus {
	outline: none;
	border-color: var(--amber);
}

.search-form {
	display: flex;
	gap: 10px;
	max-width: 460px;
	margin: 0 auto;
}

.search-form__input {
	flex: 1;
}

/* ---------- 评论 ---------- */
.comments {
	margin-top: 80px;
	padding-top: 48px;
	border-top: 1px solid var(--line-soft);
}

.comments__title,
.comment-reply-title {
	margin: 0 0 30px;
	font-family: var(--font-display);
	font-weight: 500;
	font-size: 1.4rem;
	letter-spacing: 0.08em;
	color: var(--wax);
}

.comments__list {
	list-style: none;
	margin: 0 0 40px;
	padding: 0;
}

.comments__list .comment,
.comments__list .pingback {
	padding: 22px 0;
	border-bottom: 1px solid var(--line-soft);
}

.comment-author {
	display: flex;
	align-items: center;
	gap: 12px;
	font-weight: 600;
	color: var(--wax);
}

.comment-author .avatar {
	border-radius: 50%;
	border: 1px solid var(--line);
}

.comment-metadata {
	margin: 6px 0 10px;
	font-size: 12px;
	letter-spacing: 0.08em;
	color: var(--wax-dim);
}

.comment-metadata a {
	color: inherit;
	text-decoration: none;
}

.comment-content p {
	margin: 0 0 0.8em;
	font-size: 14.5px;
	line-height: 1.9;
	color: var(--wax-body);
}

.reply a {
	font-size: 12px;
	letter-spacing: 0.16em;
	color: var(--amber-bright);
	text-decoration: none;
}

.comments__list .children {
	list-style: none;
	margin: 14px 0 0;
	padding-left: 28px;
	border-left: 1px solid var(--line-soft);
}

.comments__closed {
	color: var(--wax-dim);
	font-size: 13.5px;
	letter-spacing: 0.08em;
}

.comment-form label {
	display: block;
	margin-bottom: 8px;
	font-size: 12.5px;
	letter-spacing: 0.18em;
	color: var(--wax-dim);
}

.comment-form p {
	margin: 0 0 18px;
}

.comment-form input[type="submit"] {
	padding: 0.9em 2.2em;
	background: var(--rouge);
	border: 1px solid var(--rouge);
	color: var(--wax);
	font-family: var(--font-body);
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.22em;
	cursor: pointer;
	transition: background-color 0.25s ease, border-color 0.25s ease;
}

.comment-form input[type="submit"]:hover {
	background: var(--rouge-bright);
	border-color: var(--rouge-bright);
}

/* ---------- 404 ---------- */
.page-404 {
	padding: 30px 0;
	text-align: center;
}

.page-404__code {
	margin: 0 0 10px;
	font-family: var(--font-display);
	font-size: clamp(4rem, 10vw, 7rem);
	letter-spacing: 0.12em;
	line-height: 1;
	color: rgba(201, 138, 61, 0.16);
	-webkit-text-stroke: 1px var(--line);
}

.page-404__title {
	margin: 0 0 14px;
	font-family: var(--font-display);
	font-weight: 500;
	font-size: clamp(1.6rem, 3.6vw, 2.2rem);
	letter-spacing: 0.1em;
	color: var(--wax);
}

.page-404__text {
	margin: 0 0 34px;
	color: var(--wax-dim);
	letter-spacing: 0.05em;
}

.page-404__actions {
	margin-bottom: 44px;
}

.page-404__search {
	max-width: 420px;
	margin: 0 auto;
}

.content-none {
	text-align: center;
	color: var(--wax-dim);
}

.content-none p {
	margin: 0 0 24px;
}

/* ---------- 进场动画 ---------- */
html.has-reveal [data-reveal] {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

html.has-reveal [data-reveal].is-visible {
	opacity: 1;
	transform: none;
}

/* ---------- 动效减弱 ---------- */
@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	.hero__sign-text,
	.hero__strip-item--live::before {
		animation: none;
	}

	html.has-reveal [data-reveal] {
		opacity: 1;
		transform: none;
		transition: none;
	}

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

/* ---------- WordPress 管理条 ---------- */
body.admin-bar .site-header {
	top: 32px;
}

@media (max-width: 782px) {
	body.admin-bar .site-header {
		top: 46px;
	}
}

/* ---------- 响应式 ---------- */
@media (max-width: 980px) {
	.about__grid {
		grid-template-columns: 1fr;
	}

	.about__collage {
		max-width: 480px;
		margin: 0 auto;
	}

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

@media (max-width: 860px) {
	.nav-toggle {
		display: flex;
	}

	.site-nav {
		position: fixed;
		inset: 0;
		z-index: 90;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 36px;
		background: rgba(18, 14, 10, 0.97);
		-webkit-backdrop-filter: blur(8px);
		backdrop-filter: blur(8px);
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.3s ease, visibility 0.3s ease;
	}

	body.nav-open .site-nav {
		opacity: 1;
		visibility: visible;
	}

	body.nav-open {
		overflow: hidden;
	}

	.site-nav__list {
		flex-direction: column;
		gap: 26px;
	}

	.site-nav__list a {
		font-size: 17px;
		letter-spacing: 0.3em;
	}
}

@media (max-width: 720px) {
	/* 首屏：竖招牌转为横排小灯箱 */
	.hero {
		grid-template-columns: 1fr;
		grid-template-rows: auto 1fr auto;
	}

	.hero__sign {
		grid-column: 1;
		grid-row: 1;
		padding: 116px 0 0;
		border-right: 0;
	}

	.hero__sign-text {
		writing-mode: horizontal-tb;
		padding: 12px 22px 12px 30px;
		font-size: 1rem;
		letter-spacing: 0.5em;
	}

	.hero__body {
		grid-column: 1;
		grid-row: 2;
		padding: 36px 20px 48px;
	}

	.hero__strip-dot {
		display: none;
	}

	.hero__strip {
		flex-direction: column;
		gap: 8px;
		padding: 14px 20px;
		text-align: center;
	}

	.event {
		grid-template-columns: 64px 1fr;
		gap: 16px 18px;
	}

	.event__date {
		padding-right: 16px;
	}

	.event__date-big {
		font-size: 1.7rem;
	}

	.event__meta {
		grid-column: 2;
		flex-direction: row;
		align-items: center;
		justify-content: flex-start;
		gap: 14px;
	}

	.visit__grid {
		grid-template-columns: 1fr;
		gap: 36px;
	}

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

	.site-footer__bottom {
		flex-direction: column;
	}

	.site-main--inner {
		padding: 150px 0 90px;
	}
}

@media (max-width: 520px) {
	.hero__actions {
		flex-direction: column;
		align-items: center;
	}

	.hero__actions .btn {
		width: 100%;
		max-width: 300px;
	}

	.menu-card {
		outline-offset: 5px;
	}

	.menu-card__en {
		display: block;
		margin-left: 0;
		margin-top: 2px;
	}

	.search-form {
		flex-direction: column;
	}
}
