/* =========================================================
   盛鑫煜艺术 · 现代化重设计原型 (demo03-1)
   美术馆留白风 · 纯静态
   ========================================================= */

/* ---------- 设计令牌 ---------- */
:root {
  --bg: #F5F4F1;
  --bg-alt: #ECEAE4;
  --ink: #191817;
  --ink-soft: #56534C;
  --accent: #A34733;
  --accent-dark: #8A3A28;
  --line: rgba(25, 24, 23, .13);
  --white: #fff;

  --serif: "Playfair Display", "Noto Serif SC", Georgia, serif;
  --sans: "Inter", "Noto Serif SC", -apple-system, "Segoe UI", sans-serif;

  --maxw: 1280px;
  --gut: 24px;
  --nav-h: 76px;

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- 复位 ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- 排版 ---------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 700; line-height: 1.15; }
.display { font-size: clamp(2.8rem, 7vw, 6rem); font-weight: 900; letter-spacing: -.02em; }
.h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
.eyebrow {
  font-family: var(--sans);
  font-size: .78rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}
.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--ink-soft); }
.en { font-style: italic; color: var(--ink-soft); }

/* ---------- 布局工具 ---------- */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gut); }
.section { padding: clamp(64px, 11vw, 130px) 0; }
.section--alt { background: var(--bg-alt); }
.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 64px); }
.section-head .eyebrow { display: block; margin-bottom: 18px; }
.section-head .h2 { margin-bottom: 18px; }
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ---------- 按钮 / 链接 ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--sans); font-size: .85rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 15px 30px; border: 1px solid var(--ink);
  background: var(--ink); color: var(--bg);
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
}
.btn:hover { background: transparent; color: var(--ink); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--bg); }
.btn--light { border-color: var(--bg); background: var(--bg); color: var(--ink); }
.btn--light:hover { background: transparent; color: var(--bg); }
.link-more {
  display: inline-flex; align-items: center; gap: .5em;
  font-weight: 600; font-size: .9rem; letter-spacing: .06em;
  border-bottom: 1px solid var(--accent); padding-bottom: 4px;
  color: var(--accent); transition: gap .3s var(--ease);
}
.link-more:hover { gap: 1em; }

/* =========================================================
   顶栏
   ========================================================= */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav__inner {
  max-width: var(--maxw); width: 100%; margin: 0 auto; padding: 0 var(--gut);
  display: flex; align-items: center; justify-content: space-between;
}
.nav__logo { font-family: var(--serif); font-size: 1.45rem; font-weight: 900; letter-spacing: .01em; color: var(--white); transition: color .4s var(--ease); }
.nav__logo small { display: block; font-family: var(--sans); font-size: .58rem; letter-spacing: .34em; text-transform: uppercase; font-weight: 500; opacity: .8; }
.nav__menu { display: flex; align-items: center; gap: 34px; }
.nav__link {
  position: relative; color: var(--white); font-size: .92rem; font-weight: 500;
  transition: color .4s var(--ease); padding: 6px 0;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px;
  background: currentColor; transition: width .3s var(--ease);
}
.nav__link:hover::after, .nav__link.is-active::after { width: 100%; }

/* 下拉 */
.nav__dd { position: relative; }
.nav__dd-menu {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(8px);
  background: var(--white); min-width: 188px; padding: 12px 0;
  box-shadow: 0 22px 50px rgba(0,0,0,.14); border: 1px solid var(--line);
  opacity: 0; visibility: hidden; transition: all .3s var(--ease);
}
.nav__dd:hover .nav__dd-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav__dd-menu a { display: block; padding: 9px 22px; color: var(--ink); font-size: .9rem; transition: background .2s, color .2s; }
.nav__dd-menu a:hover { background: var(--bg-alt); color: var(--accent); }

/* 滚动后 / 内页固定态 */
.nav.is-solid { background: var(--bg); border-bottom-color: var(--line); box-shadow: 0 4px 24px rgba(0,0,0,.05); }
.nav.is-solid .nav__logo,
.nav.is-solid .nav__link { color: var(--ink); }

/* 汉堡 */
.nav__burger {
  display: none; width: 30px; height: 22px; position: relative; background: none; border: 0; cursor: pointer; z-index: 110;
}
.nav__burger span { position: absolute; left: 0; width: 100%; height: 2px; background: var(--white); transition: all .35s var(--ease); }
.nav__burger span:nth-child(1) { top: 0; }
.nav__burger span:nth-child(2) { top: 10px; }
.nav__burger span:nth-child(3) { top: 20px; }
.nav.is-solid .nav__burger span { background: var(--ink); }
.nav.is-open .nav__burger span { background: var(--ink); }
.nav.is-open .nav__burger span:nth-child(1) { top: 10px; transform: rotate(45deg); }
.nav.is-open .nav__burger span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__burger span:nth-child(3) { top: 10px; transform: rotate(-45deg); }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  color: var(--white); overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(105deg, rgba(20,17,13,.72), rgba(20,17,13,.28)); }
.hero__inner { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gut); width: 100%; }
.hero__eyebrow { color: rgba(255,255,255,.85); letter-spacing: .34em; margin-bottom: 26px; }
.hero h1 { color: var(--white); margin-bottom: 24px; }
.hero__sub { font-family: var(--serif); font-style: italic; font-size: clamp(1.2rem,2.4vw,1.9rem); color: rgba(255,255,255,.9); margin-bottom: 18px; }
.hero__desc { max-width: 540px; color: rgba(255,255,255,.78); margin-bottom: 40px; }

/* =========================================================
   关于（左文右图）
   ========================================================= */
.about__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.about__text .h2 { margin: 18px 0 24px; }
.about__text p { margin-bottom: 18px; color: var(--ink-soft); }
.about__text .en { display: block; margin-bottom: 26px; font-size: .98rem; }
.about__media { position: relative; }
.about__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.about__media::before { content: ""; position: absolute; inset: 18px -18px -18px 18px; border: 1px solid var(--accent); z-index: -1; }

/* 统计 */
.stats { display: flex; gap: clamp(28px,5vw,70px); margin-top: 36px; flex-wrap: wrap; }
.stat__num { font-family: var(--serif); font-size: clamp(2rem,3vw,2.8rem); font-weight: 900; color: var(--accent); }
.stat__label { font-size: .82rem; letter-spacing: .04em; color: var(--ink-soft); }

/* =========================================================
   网格 · 艺术家 / 作品
   ========================================================= */
.grid { display: grid; gap: 6px; }
.grid--artists { grid-template-columns: repeat(4, 1fr); }
.grid--works { grid-template-columns: repeat(3, 1fr); gap: 14px; }

.card { position: relative; overflow: hidden; background: var(--ink); }
.card img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.card:hover img { transform: scale(1.06); }
.card__cap {
  position: absolute; inset: auto 0 0 0; padding: 26px 22px 20px;
  background: linear-gradient(transparent, rgba(15,12,9,.82));
  color: var(--white); transform: translateY(12px); opacity: 0; transition: all .4s var(--ease);
}
.card:hover .card__cap { transform: translateY(0); opacity: 1; }
.card__cap h4 { font-size: 1.15rem; }
.card__cap span { font-size: .8rem; opacity: .82; letter-spacing: .04em; }

.card--artist { aspect-ratio: 3/4; }
.card--work { aspect-ratio: 4/3; }

/* =========================================================
   特色：艺术大赛
   ========================================================= */
.contest { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(20px,3vw,40px); }
.contest__item { background: var(--white); border: 1px solid var(--line); display: flex; flex-direction: column; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.contest__item:hover { transform: translateY(-6px); box-shadow: 0 26px 60px rgba(0,0,0,.1); }
.contest__item .media { aspect-ratio: 16/9; overflow: hidden; }
.contest__item .media img { width:100%; height:100%; object-fit: cover; transition: transform .8s var(--ease); }
.contest__item:hover .media img { transform: scale(1.05); }
.contest__body { padding: 30px 30px 34px; }
.contest__body .tag { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); }
.contest__body h3 { font-size: 1.5rem; margin: 12px 0 14px; }
.contest__body p { color: var(--ink-soft); margin-bottom: 22px; }

/* =========================================================
   研讨会 / 新闻列表
   ========================================================= */
.feature-2col { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,6vw,80px); }
.medialist__item { display: grid; grid-template-columns: 150px 1fr; gap: 22px; padding: 22px 0; border-bottom: 1px solid var(--line); align-items: center; transition: opacity .3s; }
.medialist__item:hover { opacity: .72; }
.medialist__item .thumb { aspect-ratio: 3/2; overflow: hidden; }
.medialist__item .thumb img { width:100%;height:100%;object-fit:cover; }
.medialist__item h4 { font-size: 1.12rem; margin-bottom: 6px; }
.medialist__item .meta { font-size: .78rem; color: var(--accent); letter-spacing: .08em; margin-bottom: 8px; }
.medialist__item p { font-size: .9rem; color: var(--ink-soft); }
.col-title { font-size: 1.6rem; margin-bottom: 14px; }

/* =========================================================
   内页头部
   ========================================================= */
.pagehead { padding: calc(var(--nav-h) + 70px) 0 64px; background: var(--bg-alt); border-bottom: 1px solid var(--line); }
.breadcrumb { font-size: .8rem; letter-spacing: .06em; color: var(--ink-soft); margin-bottom: 22px; }
.breadcrumb a:hover { color: var(--accent); }
.pagehead h1 { font-size: clamp(2.4rem,5vw,4rem); margin-bottom: 18px; }
.pagehead .lead { max-width: 640px; }

/* 筛选标签 */
.filters { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 46px; }
.filter {
  font-size: .82rem; font-weight: 600; letter-spacing: .08em; padding: 10px 22px;
  border: 1px solid var(--line); background: transparent; color: var(--ink-soft); cursor: pointer;
  transition: all .3s var(--ease);
}
.filter:hover { border-color: var(--ink); color: var(--ink); }
.filter.is-active { background: var(--ink); border-color: var(--ink); color: var(--bg); }

/* 艺术家卡（带文字版） */
.artist-card .info { padding: 18px 4px; }
.artist-card .info h3 { font-size: 1.2rem; }
.artist-card .info span { font-size: .85rem; color: var(--accent); letter-spacing: .04em; }
.is-hidden { display: none !important; }

/* =========================================================
   名单表格（大赛）
   ========================================================= */
.awardtable { width: 100%; border-collapse: collapse; margin-top: 10px; }
.awardtable th, .awardtable td { text-align: left; padding: 16px 14px; border-bottom: 1px solid var(--line); font-size: .95rem; }
.awardtable th { font-family: var(--sans); font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); }
.awardtable td:first-child { font-family: var(--serif); font-weight: 700; }
.awardtable tr:hover td { background: var(--bg-alt); }

/* 富文本正文 */
.prose { max-width: 760px; }
.prose p { margin-bottom: 22px; color: var(--ink-soft); }
.prose h3 { font-size: 1.6rem; margin: 40px 0 16px; }
.prose .en { display:block; margin-bottom: 30px; }

/* 时间线 */
.timeline { max-width: 760px; margin-top: 20px; border-left: 1px solid var(--line); }
.timeline__item { position: relative; padding: 0 0 38px 36px; }
.timeline__item::before { content: ""; position: absolute; left: -6px; top: 6px; width: 11px; height: 11px; border-radius: 50%; background: var(--accent); }
.timeline__year { font-family: var(--serif); font-size: 1.5rem; font-weight: 900; color: var(--accent); }
.timeline__item h4 { font-family: var(--sans); font-size: 1.05rem; margin: 4px 0 6px; }
.timeline__item p { font-size: .92rem; color: var(--ink-soft); }

/* 展览说明区块 */
.exhibit-intro { display:grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,6vw,80px); align-items:center; margin-bottom: clamp(50px,7vw,80px); }
.exhibit-intro img { aspect-ratio: 16/10; object-fit: cover; width: 100%; }

/* 联系区 */
.contact { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.contact__block h4 { font-family: var(--sans); font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.contact__block p { color: var(--ink-soft); font-size: .95rem; }

/* =========================================================
   页脚
   ========================================================= */
.footer { background: #15120D; color: rgba(255,255,255,.7); padding: clamp(60px,8vw,90px) 0 34px; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer__brand .logo { font-family: var(--serif); font-size: 1.6rem; font-weight: 900; color: var(--white); }
.footer__brand small { display:block; font-size:.6rem; letter-spacing:.34em; text-transform:uppercase; opacity:.7; margin-top: 4px; }
.footer__brand p { margin-top: 18px; font-size: .9rem; max-width: 260px; }
.footer__col h5 { font-family: var(--sans); font-size: .76rem; letter-spacing: .18em; text-transform: uppercase; color: var(--white); margin-bottom: 18px; }
.footer__col a { display: block; padding: 6px 0; font-size: .92rem; transition: color .3s; }
.footer__col a:hover { color: var(--accent); }
.footer__bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding-top: 28px; font-size: .8rem; opacity: .65; }

/* =========================================================
   滚动动效
   ========================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }

/* =========================================================
   响应式
   ========================================================= */
@media (max-width: 980px) {
  .about__grid, .feature-2col, .exhibit-intro { grid-template-columns: 1fr; }
  .grid--artists { grid-template-columns: repeat(3, 1fr); }
  .contest { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .contact { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav__menu {
    position: fixed; inset: 0; flex-direction: column; justify-content: center; gap: 26px;
    background: var(--bg); transform: translateX(100%); transition: transform .45s var(--ease);
  }
  .nav.is-open .nav__menu { transform: translateX(0); }
  .nav__link { color: var(--ink); font-size: 1.3rem; font-family: var(--serif); }
  .nav__dd-menu { position: static; transform: none; opacity: 1; visibility: visible; box-shadow: none; border: 0; background: transparent; padding: 4px 0; text-align: center; min-width: auto; }
  .nav__dd-menu a { padding: 5px; font-size: .95rem; }
  .nav__dd:hover .nav__dd-menu { transform: none; }
  .nav__burger { display: block; }
  .grid--works { grid-template-columns: repeat(2, 1fr); }
  .medialist__item { grid-template-columns: 110px 1fr; }
}

@media (max-width: 480px) {
  :root { --gut: 18px; }
  .grid--artists, .grid--works { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; }
  .stats { gap: 24px; }
}

/* =========================================================
   艺术家详情页 (artist.html)
   ========================================================= */

/* Hero */
.artist-hero { position: relative; height: 72vh; min-height: 520px; max-height: 780px; overflow: hidden; color: var(--white); display: flex; align-items: flex-end; }
.artist-hero__img { position: absolute; inset: 0; z-index: -2; }
.artist-hero__img img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.artist-hero__scrim { position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(20,17,13,.55) 0%, rgba(20,17,13,.25) 45%, rgba(20,17,13,.9) 100%); }
.artist-hero__inner { padding-bottom: clamp(48px, 8vh, 90px); width: 100%; }
.breadcrumb--light { color: rgba(255,255,255,.72); margin-bottom: 24px; }
.breadcrumb--light a { color: rgba(255,255,255,.9); }
.artist-hero__name { font-family: var(--serif); font-weight: 900; font-size: clamp(3.4rem, 9vw, 7.2rem); line-height: 1; letter-spacing: -.02em; margin-bottom: 18px; }
.artist-hero__meta { font-size: 1rem; color: rgba(255,255,255,.85); display: inline-flex; align-items: center; gap: 14px; letter-spacing: .04em; }
.artist-hero__meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--accent); display: inline-block; }
.artist-hero__tags { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 8px; }
.chip { font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; padding: 8px 14px; border: 1px solid rgba(255,255,255,.35); border-radius: 999px; color: rgba(255,255,255,.9); backdrop-filter: blur(6px); }
.artist-hero__cap { position: absolute; right: 24px; bottom: 20px; font-size: .78rem; color: rgba(255,255,255,.7); letter-spacing: .06em; z-index: 1; }

/* 导读引言 */
.artist-lead-wrap { padding-top: clamp(72px, 10vw, 120px); padding-bottom: clamp(48px, 7vw, 80px); }
.byline { text-align: center; font-family: var(--serif); font-style: italic; font-size: 1.05rem; color: var(--accent); letter-spacing: .02em; margin-bottom: 34px; }
.artist-lead { position: relative; max-width: 820px; margin: 0 auto; padding: 40px 20px 20px; text-align: center; }
.artist-lead .quotemark { position: absolute; top: -20px; left: 50%; transform: translateX(-50%); font-family: var(--serif); font-size: 8rem; line-height: 1; color: var(--accent); opacity: .28; }
.artist-lead p { font-family: var(--serif); font-size: clamp(1.15rem, 1.9vw, 1.55rem); line-height: 1.7; color: var(--ink); font-style: italic; }
.artist-lead cite { display: block; margin-top: 26px; font-family: var(--sans); font-style: normal; font-size: .84rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-soft); }
.artist-lead cite::before { content: ""; display: inline-block; width: 40px; height: 1px; background: var(--accent); vertical-align: middle; margin-right: 14px; }

/* 导入段落（3 段分栏） */
.artist-intro { padding-top: clamp(40px, 6vw, 70px); padding-bottom: clamp(72px, 10vw, 110px); }
.artist-intro__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(28px, 4vw, 56px); max-width: 1160px; margin: 0 auto; }
.artist-intro__grid p { font-size: 1rem; line-height: 1.9; color: var(--ink-soft); position: relative; padding-top: 26px; }
.artist-intro__grid p::before { content: ""; position: absolute; top: 0; left: 0; width: 34px; height: 2px; background: var(--accent); }

/* 代表作 */
.artist-featured figure { max-width: 680px; margin: 0 auto; text-align: center; }
.artist-featured img { width: 100%; height: auto; box-shadow: 0 30px 60px rgba(0,0,0,.14); }
.artist-featured figcaption { margin-top: 26px; display: flex; flex-direction: column; align-items: center; gap: 6px; }
.artist-featured .ftitle { font-family: var(--serif); font-size: 1.4rem; font-weight: 700; color: var(--ink); }
.artist-featured .fcap { font-size: .88rem; color: var(--ink-soft); letter-spacing: .06em; }

/* 章节 */
.artist-chapter .chapter-head { max-width: 860px; margin: 0 auto clamp(38px, 5vw, 58px); text-align: center; }
.chapter-index { display: block; font-family: var(--serif); font-size: 1.1rem; font-style: italic; color: var(--accent); letter-spacing: .1em; margin-bottom: 12px; }
.chapter-index::before, .chapter-index::after { content: ""; display: inline-block; width: 30px; height: 1px; background: var(--accent); opacity: .5; vertical-align: middle; margin: 0 12px; }
.artist-chapter .chapter-head .h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); line-height: 1.25; }
.chapter-sub { font-family: var(--serif); font-style: italic; color: var(--ink-soft); font-size: 1.1rem; margin-top: 8px; }
.chapter-body { max-width: 720px; margin: 0 auto; }
.chapter-body p { font-size: 1.02rem; line-height: 2.0; color: var(--ink); margin-bottom: 22px; text-align: justify; }
.chapter-body p:first-child::first-letter { font-family: var(--serif); font-size: 3.4rem; font-weight: 700; float: left; line-height: 1; padding: 6px 12px 0 0; color: var(--accent); }

.chapter-figs { margin-top: clamp(46px, 6vw, 70px); display: grid; gap: 18px; }
.chapter-figs--pair { grid-template-columns: 1fr; max-width: 900px; margin-left: auto; margin-right: auto; }
.chapter-figs--grid { grid-template-columns: repeat(3, 1fr); }
.chapter-figs figure { overflow: hidden; background: var(--bg-alt); }
.chapter-figs img { width: 100%; height: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .8s var(--ease); }
.chapter-figs figure:hover img { transform: scale(1.04); }
.chapter-figs figcaption { padding: 12px 2px 0; font-size: .82rem; color: var(--ink-soft); letter-spacing: .04em; text-align: center; }

/* 艺术家简介 */
.artist-bio .bio-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(40px, 6vw, 80px); align-items: start; max-width: 1120px; margin: 0 auto; }
.bio-portrait { position: relative; }
.bio-portrait img { width: 100%; aspect-ratio: 3/4; object-fit: cover; filter: grayscale(.15); }
.bio-portrait::before { content: ""; position: absolute; inset: 20px -20px -20px 20px; border: 1px solid var(--accent); z-index: -1; }
.bio-name { padding: 22px 4px 0; }
.bio-name h3 { font-size: 1.5rem; font-family: var(--serif); }
.bio-name span { font-family: var(--sans); font-size: .82rem; letter-spacing: .16em; color: var(--accent); text-transform: uppercase; }
.bio-text .h2 { margin-bottom: 26px; font-size: clamp(1.7rem, 3vw, 2.3rem); }
.bio-text p { font-size: 1rem; line-height: 1.95; color: var(--ink-soft); margin-bottom: 20px; }

/* 奖项列表 */
.artist-awards .awards-list { max-width: 900px; margin: 0 auto; list-style: none; padding: 0; }
.artist-awards .awards-list li { display: grid; grid-template-columns: 110px 1fr; gap: 24px; padding: 22px 0; border-bottom: 1px solid var(--line); align-items: baseline; }
.artist-awards .awards-list li:last-child { border-bottom: 0; }
.artist-awards .ay { font-family: var(--serif); font-weight: 900; font-size: 1.15rem; color: var(--accent); letter-spacing: .02em; }
.artist-awards .at { font-size: .98rem; line-height: 1.7; color: var(--ink); }

/* 图集 */
.artist-gallery .gallery-grid { columns: 3; column-gap: 14px; }
.artist-gallery .gallery-grid figure { break-inside: avoid; margin: 0 0 14px; overflow: hidden; background: var(--bg-alt); }
.artist-gallery .gallery-grid img { width: 100%; display: block; transition: transform .8s var(--ease); }
.artist-gallery .gallery-grid figure:hover img { transform: scale(1.04); }
.artist-cta { text-align: center; margin-top: 60px; }

/* 响应式 */
@media (max-width: 980px) {
  .artist-intro__grid { grid-template-columns: 1fr; }
  .chapter-figs--grid { grid-template-columns: repeat(2, 1fr); }
  .artist-bio .bio-grid { grid-template-columns: 1fr; }
  .bio-portrait { max-width: 320px; margin: 0 auto; }
  .artist-gallery .gallery-grid { columns: 2; }
}
@media (max-width: 640px) {
  .artist-hero { min-height: 520px; height: 78vh; }
  .chapter-figs--grid { grid-template-columns: 1fr; }
  .artist-awards .awards-list li { grid-template-columns: 90px 1fr; gap: 14px; }
  .artist-gallery .gallery-grid { columns: 1; }
  .chapter-body p:first-child::first-letter { font-size: 2.6rem; }
}
