/* ============================================================
 * 刘维绢 · 作品集 —— 设计系统
 * 暗色玻璃拟态 × 实时 GPU 背景 × 衬线编辑排版
 * ============================================================ */

:root {
  --gold: #d8b478;
  --gold-soft: #e8d3a8;
  --ink: #0d1016;
  --paper: #f5efe4;
  --text: rgba(255, 252, 245, 0.94);
  --text-dim: rgba(255, 252, 245, 0.62);
  --text-faint: rgba(255, 252, 245, 0.38);
  --glass: rgba(14, 17, 23, 0.46);
  --glass-strong: rgba(12, 14, 20, 0.62);
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(216, 180, 120, 0.45);
  --serif: "Noto Serif SC", "Songti SC", "STSong", serif;
  --latin: "Cormorant Garamond", "Noto Serif SC", serif;
  --sans: "Inter", "PingFang SC", "Microsoft YaHei", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--text);
  background: #0b0e13;
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
::selection { background: rgba(216, 180, 120, 0.35); color: #fff; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ---------- 背景层 ---------- */
#bg-canvas {
  position: fixed; inset: 0;
  width: 100vw; height: 100vh;
  z-index: 0;
  display: block;
}
.bg-veil {
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(120% 90% at 50% 20%, transparent 42%, rgba(7, 9, 13, 0.42) 100%),
    linear-gradient(180deg, rgba(7, 9, 13, 0.18) 0%, transparent 18%, transparent 78%, rgba(7, 9, 13, 0.45) 100%);
}
body.bg-css-fallback #bg-canvas { display: none; }
body.bg-css-fallback {
  background: linear-gradient(180deg, #2b3a36 0%, #1a2736 38%, #141a28 62%, #191108 100%);
}

/* ---------- 进度条 / 导航 ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 60;
  background: rgba(255, 255, 255, 0.06);
}
.scroll-progress span {
  display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, var(--gold-soft), var(--gold));
  box-shadow: 0 0 12px rgba(216, 180, 120, 0.7);
}

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 48px;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease);
}
.nav.is-scrolled {
  padding: 14px 48px;
  background: rgba(10, 12, 17, 0.55);
  backdrop-filter: blur(18px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
  border-bottom: 1px solid var(--line);
}
.nav__logo {
  font-family: var(--latin);
  font-size: 1.5rem; font-weight: 600; letter-spacing: 0.06em;
}
.nav__logo span { color: var(--gold); }
.nav__links { display: flex; gap: 34px; }
.nav__links a {
  font-size: 0.86rem; letter-spacing: 0.18em; color: var(--text-dim);
  position: relative; padding: 4px 0; transition: color 0.3s;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px;
  background: var(--gold); transform: scaleX(0); transform-origin: right;
  transition: transform 0.35s var(--ease);
}
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__cta {
  font-size: 0.82rem; letter-spacing: 0.14em;
  padding: 9px 20px; border-radius: 999px;
  border: 1px solid var(--line-strong); color: var(--gold-soft);
  transition: all 0.3s var(--ease);
}
.nav__cta:hover { background: var(--gold); color: #1a1408; border-color: var(--gold); }

.dots {
  position: fixed; right: 30px; top: 50%; transform: translateY(-50%);
  z-index: 50; display: flex; flex-direction: column; gap: 18px;
}
.dots a { display: flex; align-items: center; gap: 10px; justify-content: flex-end; }
.dots i {
  width: 7px; height: 7px; border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: all 0.3s var(--ease); flex: none;
}
.dots span {
  font-size: 0.72rem; letter-spacing: 0.2em; color: var(--text-dim);
  opacity: 0; transform: translateX(8px); transition: all 0.3s var(--ease);
}
.dots a:hover span { opacity: 1; transform: translateX(0); }
.dots a.is-active i {
  background: var(--gold); border-color: var(--gold);
  box-shadow: 0 0 10px rgba(216, 180, 120, 0.8);
  transform: scale(1.25);
}

/* ---------- 通用布局 ---------- */
main { position: relative; z-index: 2; }
.section {
  padding: 80px 24px 90px;
  display: flex; flex-direction: column; justify-content: flex-start;
}
.wrap { width: 100%; max-width: 1180px; margin: 0 auto; }

.sec-head {
  display: flex; align-items: baseline; gap: 20px;
  margin-bottom: 56px; flex-wrap: wrap;
}
.sec-head__num {
  font-family: var(--latin); font-size: 1rem; color: var(--gold);
  letter-spacing: 0.1em; border: 1px solid var(--line-strong);
  width: 44px; height: 44px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  align-self: center;
}
.sec-head__title {
  font-family: var(--serif); font-size: clamp(2rem, 4.6vw, 3.2rem);
  font-weight: 600; letter-spacing: 0.08em;
}
.sec-head__en {
  font-family: var(--latin); font-size: 0.95rem; letter-spacing: 0.42em;
  color: var(--text-faint); text-transform: uppercase;
}
.sec-head::after {
  content: ""; flex: 1; min-width: 60px; height: 1px;
  background: linear-gradient(90deg, var(--line-strong), transparent);
  align-self: center;
}
.sec-sub { color: var(--text-dim); margin: -30px 0 44px; font-size: 0.98rem; letter-spacing: 0.04em; }

/* 玻璃卡片基类 */
.glass {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  backdrop-filter: blur(20px) saturate(1.25);
  -webkit-backdrop-filter: blur(20px) saturate(1.25);
  border: 1px solid var(--line);
  border-radius: 20px;
}

/* ---------- 入场动画 ---------- */
[data-reveal] {
  opacity: 0; transform: translateY(38px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
[data-reveal].is-in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ---------- 00 HERO ---------- */
.hero { align-items: center; text-align: center; position: relative; min-height: 100vh; justify-content: center; }
.hero__inner { max-width: 900px; }
.hero__eyebrow {
  font-family: var(--latin); font-size: 0.85rem; letter-spacing: 0.55em;
  color: var(--gold-soft); margin-bottom: 26px; text-indent: 0.55em;
}
.hero__name {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 8.5vw, 6.2rem);
  font-weight: 600; line-height: 1.1; letter-spacing: 0.06em;
  text-indent: 0.06em;
  background: linear-gradient(180deg, #fff 30%, var(--gold-soft) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 80px rgba(216, 180, 120, 0.25);
}
.hero__ename {
  font-family: var(--latin); font-size: clamp(1.1rem, 2.6vw, 1.7rem);
  font-weight: 400; letter-spacing: 0.42em; text-indent: 0.42em;
  color: var(--gold); margin: 16px 0 0;
}
.hero__latin {
  font-family: var(--sans); font-size: clamp(0.95rem, 2vw, 1.25rem);
  letter-spacing: 0.32em; text-indent: 0.32em; color: var(--text-dim);
  margin: 18px 0 30px;
}
.hero__tagline {
  font-family: var(--serif); font-size: clamp(1.02rem, 2.1vw, 1.42rem);
  letter-spacing: 0.1em; line-height: 2;
}
.hero__tagline em { font-style: normal; color: var(--gold); margin: 0 6px; }
.hero__tagline span { color: var(--gold-soft); letter-spacing: 0.08em; }
.hero__meta {
  margin-top: 38px; font-size: 0.85rem; letter-spacing: 0.22em; color: var(--text-faint);
}
.hero__meta .dot { margin: 0 12px; color: var(--gold); }

.scroll-hint {
  position: absolute; bottom: 42px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.scroll-hint span:first-child {
  font-family: var(--latin); font-size: 0.72rem; letter-spacing: 0.5em;
  color: var(--text-faint); text-indent: 0.5em;
}
.scroll-hint__line {
  width: 1px; height: 56px; background: rgba(255, 255, 255, 0.18); overflow: hidden;
  position: relative;
}
.scroll-hint__line i {
  position: absolute; top: -50%; left: 0; width: 100%; height: 50%;
  background: var(--gold); animation: drop 1.8s var(--ease) infinite;
}
@keyframes drop {
  0% { top: -50%; } 60%, 100% { top: 110%; }
}

/* ---------- 01 ABOUT ---------- */
.about__grid {
  display: grid; grid-template-columns: 1.08fr 0.92fr;
  gap: 48px; align-items: center; margin-bottom: 72px;
}
.about__photos { position: relative; display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.photo { position: relative; overflow: hidden; border-radius: 16px; border: 1px solid var(--line); }
.photo img { width: 100%; height: 100%; object-fit: cover; }
.photo--main { grid-row: span 2; aspect-ratio: 3/4.4; }
.photo--life1, .photo--life2 { aspect-ratio: 3/3.6; }
.photo--main figcaption {
  position: absolute; left: 14px; bottom: 12px;
  font-family: var(--latin); font-size: 0.72rem; letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(10, 12, 17, 0.45); backdrop-filter: blur(8px);
  padding: 5px 12px; border-radius: 999px;
}
.photo { transition: transform 0.5s var(--ease); }
.photo:hover { transform: translateY(-6px) rotate(-0.4deg); }
.about__p {
  font-size: 1.14rem; line-height: 1.92; color: rgba(255, 252, 245, 0.82);
  margin-bottom: 22px; letter-spacing: 0.02em;
}
.about__p strong { color: var(--gold-soft); font-weight: 700; }
.about__h {
  font-family: var(--serif); font-size: 1.22rem; font-weight: 600;
  letter-spacing: 0.06em; color: var(--text); margin: 26px 0 12px;
}
.about__h:first-child { margin-top: 0; }
.about__h span { color: var(--gold); margin-right: 8px; }

/* 数据带 */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--line);
  border: 1px solid var(--line); border-radius: 20px; overflow: hidden;
  margin-bottom: 64px;
}
.stat {
  background: var(--glass);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  padding: 38px 24px; text-align: center;
  transition: background 0.4s;
}
.stat:hover { background: rgba(20, 24, 33, 0.66); }
.stat__num {
  display: block; font-family: var(--latin); font-weight: 600;
  font-size: clamp(1.7rem, 3.4vw, 2.6rem); color: var(--gold-soft);
  letter-spacing: 0.02em; line-height: 1.2;
}
.stat__label { display: block; margin-top: 10px; font-size: 0.8rem; letter-spacing: 0.14em; color: var(--text-faint); }

/* 标签云 */
.skills__title {
  font-family: var(--serif); font-size: 1.15rem; letter-spacing: 0.16em;
  margin-bottom: 26px; display: flex; align-items: center; gap: 14px;
}
.skills__title span { font-family: var(--latin); font-size: 0.78rem; letter-spacing: 0.4em; color: var(--text-faint); }
.tagcloud { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.tag {
  border: 1px solid rgba(216, 180, 120, 0.28); border-radius: 999px;
  background: rgba(216, 180, 120, 0.06);
  padding: 8px 20px; color: rgba(255, 252, 245, 0.85);
  font-family: var(--sans); font-size: 0.88rem; letter-spacing: 0.06em;
  transition: all 0.35s var(--ease); cursor: default; white-space: nowrap;
}
.tag:hover { border-color: var(--gold); color: #1a1408; background: var(--gold); transform: translateY(-3px) scale(1.05); }
.tag--xl { font-size: 1.14rem; padding: 11px 28px; color: var(--gold-soft); border-color: rgba(216, 180, 120, 0.5); font-family: var(--serif); background: rgba(216, 180, 120, 0.12); }
.tag--lg { font-size: 1rem; color: rgba(255, 252, 245, 0.92); border-color: rgba(216, 180, 120, 0.35); }
.tag--md { font-size: 0.9rem; }
.tag--sm { font-size: 0.8rem; padding: 6px 16px; color: rgba(255, 252, 245, 0.7); }

/* ---------- 02 EXPERIENCE ---------- */
.timeline { display: flex; flex-direction: column; gap: 56px; position: relative; }
.job {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 0;
  border-radius: 24px; overflow: hidden;
  background: var(--glass);
  backdrop-filter: blur(22px) saturate(1.25);
  -webkit-backdrop-filter: blur(22px) saturate(1.25);
  border: 1px solid var(--line);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.job:hover { transform: translateY(-6px); box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.7); }
.job--reverse .job__media { order: 2; }
.job__media { position: relative; overflow: hidden; min-height: 440px; }
.job__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.job:hover .job__media img { transform: scale(1.05); }
.job__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(13, 16, 22, 0.35), transparent 60%);
}
.job__body { padding: 52px 54px; display: flex; flex-direction: column; justify-content: center; }
.job__top { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.job__date { font-family: var(--latin); font-size: 0.98rem; letter-spacing: 0.22em; color: var(--gold); }
.job__badge {
  font-size: 0.78rem; letter-spacing: 0.2em; padding: 4px 14px;
  border: 1px solid var(--line); border-radius: 999px; color: var(--text-faint);
}
.job__company { font-family: var(--serif); font-size: 2rem; font-weight: 600; letter-spacing: 0.06em; }
.job__role { font-size: 1.12rem; color: var(--gold-soft); letter-spacing: 0.14em; margin: 8px 0 26px; }
.job__list { list-style: none; display: flex; flex-direction: column; gap: 16px; margin-bottom: 30px; }
.job__list li {
  position: relative; padding-left: 24px; font-size: 1.06rem; color: rgba(255, 252, 245, 0.78); line-height: 1.85;
}
.job__list li::before {
  content: ""; position: absolute; left: 0; top: 0.78em;
  width: 8px; height: 8px; border: 1px solid var(--gold); border-radius: 50%;
}
.job__list strong { color: var(--text); font-weight: 600; }
.job__metrics { display: flex; flex-wrap: wrap; gap: 12px; }
.job__metrics span {
  font-size: 0.92rem; color: var(--text-dim);
  border: 1px solid var(--line); border-radius: 10px; padding: 10px 16px;
  background: rgba(255, 255, 255, 0.03);
}
.job__metrics b { color: var(--gold-soft); font-family: var(--latin); font-size: 1.08em; margin-right: 4px; }

/* ---------- 03 VIDEOS ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 42px; }
.filter {
  padding: 9px 22px; border-radius: 999px; font-size: 0.86rem; letter-spacing: 0.12em;
  border: 1px solid var(--line); color: var(--text-dim);
  transition: all 0.3s var(--ease);
}
.filter:hover { color: var(--text); border-color: var(--line-strong); }
.filter.is-active {
  background: var(--gold); border-color: var(--gold); color: #1a1408; font-weight: 600;
  box-shadow: 0 8px 24px -8px rgba(216, 180, 120, 0.6);
}

.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.vcard {
  border-radius: 18px; overflow: hidden; cursor: pointer;
  background: var(--glass);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--line);
  transition: transform 0.45s var(--ease), border-color 0.45s, opacity 0.4s;
}
.vcard:hover { transform: translateY(-8px); border-color: var(--line-strong); }
.vcard.is-hidden { display: none; }
.vcard__cover { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.vcard__cover img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.vcard:hover .vcard__cover img { transform: scale(1.07); }
.vcard__cover::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(10, 12, 17, 0.72) 100%);
}
.vcard__play {
  position: absolute; top: 50%; left: 50%; z-index: 2;
  width: 58px; height: 58px; transform: translate(-50%, -50%) scale(0.85);
  border-radius: 50%; border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(14, 17, 23, 0.35); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: all 0.4s var(--ease);
}
.vcard__play::after {
  content: ""; border-style: solid; border-width: 9px 0 9px 15px;
  border-color: transparent transparent transparent #fff; margin-left: 3px;
}
.vcard:hover .vcard__play { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.vcard__cat {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-size: 0.7rem; letter-spacing: 0.18em; padding: 4px 12px;
  border-radius: 999px; background: rgba(14, 17, 23, 0.55); backdrop-filter: blur(8px);
  border: 1px solid var(--line); color: var(--gold-soft);
}
.vcard__body { padding: 20px 22px 24px; }
.vcard__title { font-family: var(--serif); font-size: 1.18rem; font-weight: 600; letter-spacing: 0.05em; margin-bottom: 8px; }
.vcard__desc { font-size: 0.82rem; color: var(--text-dim); line-height: 1.7; margin-bottom: 14px; }
.vcard__tools { display: flex; flex-wrap: wrap; gap: 8px; }
.vcard__tools span {
  font-size: 0.68rem; letter-spacing: 0.1em; color: var(--text-faint);
  border: 1px solid var(--line); border-radius: 6px; padding: 2px 9px;
}

/* ---------- 04 AI GALLERY（左图册 / 右介绍） ---------- */
.ai-grid { display: flex; flex-direction: column; gap: 44px; }
.showcase {
  display: grid; grid-template-columns: 1.12fr 1fr; gap: 0;
  border-radius: 24px; overflow: hidden;
  background: var(--glass);
  backdrop-filter: blur(22px) saturate(1.25); -webkit-backdrop-filter: blur(22px) saturate(1.25);
  border: 1px solid var(--line);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s;
}
.showcase:hover { transform: translateY(-6px); box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.7); border-color: var(--line-strong); }
.showcase__gallery { display: flex; flex-direction: column; background: rgba(0, 0, 0, 0.25); }
.showcase__viewer {
  position: relative; width: 100%; aspect-ratio: 16 / 10.5; overflow: hidden;
}
.showcase__viewer img,
.showcase__viewer video { width: 100%; height: 100%; object-fit: cover; display: block; }
.showcase__viewer::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(120deg, rgba(13, 16, 22, 0.3), transparent 55%);
}
.showcase__thumbs { display: flex; gap: 10px; padding: 12px; }
.showcase__thumb {
  position: relative; width: 96px; height: 62px; flex: none; cursor: pointer;
  border-radius: 10px; overflow: hidden; padding: 0;
  border: 1px solid var(--line); opacity: 0.55;
  transition: all 0.3s var(--ease); background: none;
}
.showcase__thumb img,
.showcase__thumb video { width: 100%; height: 100%; object-fit: cover; display: block; }
.showcase__thumb:hover { opacity: 0.9; }
.showcase__thumb.is-active { opacity: 1; border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold); }
.showcase__thumbtag {
  position: absolute; left: 4px; bottom: 4px; z-index: 2;
  font-size: 0.6rem; letter-spacing: 0.1em; color: var(--gold-soft);
  background: rgba(13, 16, 22, 0.75); border-radius: 4px; padding: 1px 6px;
}
.showcase__info { padding: 46px 48px; display: flex; flex-direction: column; justify-content: center; gap: 16px; }
.showcase__icon {
  font-size: 2rem; width: 56px; height: 56px; display: grid; place-items: center;
  border-radius: 16px; background: rgba(216, 180, 120, 0.08);
  border: 1px solid rgba(216, 180, 120, 0.25);
}
.showcase__title { font-family: var(--serif); font-size: 1.72rem; font-weight: 600; letter-spacing: 0.05em; }
.showcase__desc { font-size: 1.02rem; color: rgba(255, 252, 245, 0.75); line-height: 1.9; }
.showcase__tags { display: flex; flex-wrap: wrap; gap: 9px; }
.showcase__tags span {
  font-size: 0.78rem; letter-spacing: 0.08em; color: var(--gold-soft);
  background: rgba(216, 180, 120, 0.09); border: 1px solid rgba(216, 180, 120, 0.25);
  border-radius: 8px; padding: 5px 13px;
}
.showcase__link { align-self: flex-start; margin-top: 6px; }
.showcase__soon { font-size: 0.85rem; color: var(--text-faint); letter-spacing: 0.06em; margin-top: 4px; }

/* ---------- 05 WRITING ---------- */
.article-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; max-width: 860px; margin: 0 auto; }
.artcard {
  display: flex; flex-direction: column;
  border-radius: 18px; overflow: hidden;
  background: var(--glass);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--line);
  color: inherit; text-decoration: none; cursor: pointer;
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease);
}
.artcard:hover { transform: translateY(-6px); border-color: var(--line-strong); }
.artcard__cover { position: relative; overflow: hidden; aspect-ratio: 16 / 11; }
.artcard__cover img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.artcard:hover .artcard__cover img { transform: scale(1.06); }
.artcard__reads {
  position: absolute; right: 10px; bottom: 10px;
  font-family: var(--latin); font-size: 0.72rem; letter-spacing: 0.08em;
  background: rgba(14, 17, 23, 0.6); backdrop-filter: blur(8px);
  padding: 4px 10px; border-radius: 999px; color: var(--gold-soft);
}
.artcard__body { padding: 28px 30px 32px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.artcard__title { font-family: var(--serif); font-size: 1.18rem; font-weight: 600; letter-spacing: 0.04em; line-height: 1.55; }
.artcard__hl { font-size: 0.92rem; color: var(--text-dim); line-height: 1.7; }
.artcard__hl::before { content: "— "; color: var(--gold); }
.artcard__more {
  margin-top: auto; padding-top: 10px;
  font-size: 0.88rem; letter-spacing: 0.12em; color: var(--gold-soft);
  transition: color 0.3s, letter-spacing 0.3s;
}
.artcard:hover .artcard__more { color: var(--gold); letter-spacing: 0.18em; }

/* ---------- 06 CONTACT ---------- */
.contact { text-align: center; }
.contact__inner { max-width: 920px; }
.contact__eyebrow { font-family: var(--latin); font-size: 0.85rem; letter-spacing: 0.5em; color: var(--gold); text-indent: 0.5em; margin-bottom: 30px; }
.contact__title {
  font-family: var(--serif); font-size: clamp(2.4rem, 6vw, 4.4rem);
  font-weight: 600; letter-spacing: 0.08em; line-height: 1.35; margin-bottom: 34px;
}
.contact__title span { color: var(--gold-soft); }
.contact__intent {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 12px;
  font-size: 0.92rem; letter-spacing: 0.12em; color: var(--text-dim); margin-bottom: 54px;
}
.contact__intent b { color: var(--text); font-weight: 600; font-family: var(--serif); }
.contact__intent i { color: var(--gold); font-style: normal; }
.contact__links {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 48px;
}
.contact__item {
  padding: 26px 18px; border-radius: 16px;
  background: var(--glass);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 10px;
  transition: all 0.35s var(--ease);
}
a.contact__item:hover { border-color: var(--line-strong); transform: translateY(-4px); }
.contact__k { font-family: var(--latin); font-size: 0.72rem; letter-spacing: 0.36em; color: var(--gold); }
.contact__v { font-size: 0.92rem; letter-spacing: 0.06em; word-break: break-all; }
.contact__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 70px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 15px 38px; border-radius: 999px; font-size: 0.92rem; letter-spacing: 0.16em;
  transition: all 0.35s var(--ease);
}
.btn--primary {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #1a1408; font-weight: 600;
  box-shadow: 0 14px 36px -12px rgba(216, 180, 120, 0.55);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 20px 44px -12px rgba(216, 180, 120, 0.75); }
.btn--ghost { border: 1px solid var(--line-strong); color: var(--gold-soft); }
.btn--ghost:hover { background: rgba(216, 180, 120, 0.1); transform: translateY(-3px); }

.footer {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding-top: 30px; border-top: 1px solid var(--line);
  font-size: 0.74rem; letter-spacing: 0.16em; color: var(--text-faint);
}
.footer__tech b { color: var(--gold); font-weight: 500; }

/* ---------- 视频弹窗 ---------- */
.modal {
  position: fixed; inset: 0; z-index: 100;
  display: flex; align-items: center; justify-content: center; padding: 24px;
  visibility: hidden; opacity: 0; transition: opacity 0.35s var(--ease), visibility 0.35s;
}
.modal.is-open { visibility: visible; opacity: 1; }
.modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(6, 8, 12, 0.78); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
}
.modal__box {
  position: relative; width: 100%; max-width: 960px;
  border-radius: 22px; overflow: hidden;
  background: var(--glass-strong);
  border: 1px solid var(--line);
  transform: translateY(30px) scale(0.97);
  transition: transform 0.4s var(--ease);
  max-height: 90vh; overflow-y: auto;
}
.modal.is-open .modal__box { transform: translateY(0) scale(1); }
.modal__close {
  position: absolute; top: 14px; right: 16px; z-index: 3;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(10, 12, 17, 0.6); border: 1px solid var(--line);
  font-size: 1.3rem; color: #fff; line-height: 1;
  transition: all 0.3s;
}
.modal__close:hover { background: var(--gold); color: #1a1408; transform: rotate(90deg); }
.modal__media { position: relative; aspect-ratio: 16/9; background: #000; }
.modal__media video, .modal__media img { width: 100%; height: 100%; object-fit: cover; }
.modal__media .placeholder-note {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
  background: linear-gradient(160deg, rgba(20, 24, 33, 0.4), rgba(20, 24, 33, 0.75));
  color: var(--text-dim); font-size: 0.88rem; letter-spacing: 0.14em; text-align: center; padding: 20px;
}
.modal__media .placeholder-note .big { font-size: 2.2rem; }
.modal__info { padding: 30px 34px 34px; }
.modal__cat { font-size: 0.74rem; letter-spacing: 0.22em; color: var(--gold); }
.modal__info h3 { font-family: var(--serif); font-size: 1.6rem; margin: 8px 0 12px; letter-spacing: 0.05em; }
.modal__info p { color: var(--text-dim); font-size: 0.9rem; margin-bottom: 18px; }
.modal__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.modal__tags span {
  font-size: 0.72rem; color: var(--gold-soft);
  border: 1px solid rgba(216, 180, 120, 0.3); border-radius: 6px; padding: 3px 11px;
}
.modal__link { padding: 11px 28px; font-size: 0.84rem; }

/* ---------- 响应式 ---------- */
@media (max-width: 1024px) {
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .showcase { grid-template-columns: 1fr; }
  .showcase__info { padding: 34px 36px 40px; }
  .about__grid { grid-template-columns: 1fr; gap: 44px; }
  .about__photos { max-width: 520px; }
  .contact__links { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 720px) {
  .nav { padding: 16px 20px; }
  .nav.is-scrolled { padding: 12px 20px; }
  .nav__links { display: none; }
  .dots { display: none; }
  .section { padding: 100px 18px 80px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .job { grid-template-columns: 1fr; }
  .job--reverse .job__media { order: 0; }
  .job__media { min-height: 260px; }
  .job__body { padding: 32px 28px; }
  .job__company { font-size: 1.6rem; }
  .job__list li { font-size: 1rem; }
  .video-grid { grid-template-columns: 1fr; }
  .showcase__info { padding: 28px 26px 34px; gap: 12px; }
  .showcase__title { font-size: 1.4rem; }
  .showcase__thumb { width: 76px; height: 50px; }
  .article-grid { grid-template-columns: 1fr; }
  .artcard__cover { aspect-ratio: 16 / 9; }
  .sec-head { gap: 12px; margin-bottom: 40px; }
  .sec-head__num { width: 38px; height: 38px; }
  .footer { justify-content: center; text-align: center; }
}
