@charset "UTF-8";
/* =========================================================================
   日本中国友好協会 岩手県連合会 — 全站样式
   纯 CSS，无依赖。主题：中国红 × 金 × 和纸留白
   ========================================================================= */

/* ---------- 设计变量 ---------- */
:root {
  --red:      #c8102e;   /* 中国红 */
  --red-dark: #9c0a22;
  --gold:     #c9a227;   /* 金 */
  --gold-lt:  #e3c86b;
  --ink:      #1f1a17;   /* 墨色文字 */
  --ink-soft: #4a423c;
  --paper:    #fbf7f0;   /* 和纸底 */
  --paper-2:  #f3ece0;
  --line:     #e3d9c8;
  --white:    #ffffff;
  --shadow:   0 6px 24px rgba(31, 26, 23, .10);
  --shadow-lg:0 14px 40px rgba(31, 26, 23, .18);
  --radius:   14px;
  --maxw:     1160px;
  --nav-h:    68px;
  --serif:    "Yu Mincho", "Hiragino Mincho ProN", "Songti SC", serif;
  --sans:     "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo",
              "Microsoft YaHei", system-ui, sans-serif;
}

/* ---------- 基础重置 ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.85;
  letter-spacing: .02em;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration: none; transition: color .2s; }
a:hover { color: var(--red-dark); }
ul { list-style: none; }

/* ---------- 通用容器 / 区块 ---------- */
.container { width: min(100% - 2.4rem, var(--maxw)); margin-inline: auto; }
.section { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.section--alt { background: var(--paper-2); }
.section--ink { background: #241d19; color: #f4ede2; }
.section--ink .section-title, .section--ink h2, .section--ink h3 { color: #fff; }

/* 区块标题（带装饰竖线 + 中日双行） */
.section-head { text-align: center; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head .eyebrow {
  display: inline-block;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: .28em;
  font-size: .78rem;
  margin-bottom: .6rem;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3.6vw, 2.3rem);
  font-weight: 700;
  color: var(--ink);
  position: relative;
  display: inline-block;
  padding-bottom: .7rem;
}
.section-title::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 0;
  transform: translateX(-50%);
  width: 56px; height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  border-radius: 2px;
}
.section-lead {
  max-width: 720px;
  margin: 1.2rem auto 0;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

/* ---------- 顶部导航 ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 247, 240, .94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav {
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: .6rem; }
.brand__mark {
  width: 40px; height: 40px; flex: none;
  display: grid; place-items: center;
  background: var(--red); color: #fff;
  font-family: var(--serif); font-weight: 700; font-size: 1.2rem;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(200,16,46,.4);
}
/* ロゴ画像（ヘッダー/フッター共通の丸ロゴ） */
.brand__logo {
  width: 48px; height: 48px; flex: none;
  border-radius: 50%; object-fit: cover;
  background: #fff;
  box-shadow: 0 2px 8px rgba(200,16,46,.28);
  transition: transform .2s;
}
.brand:hover .brand__logo { transform: scale(1.05); }
.brand__text { line-height: 1.2; }
.brand__jp { font-family: var(--serif); font-weight: 700; font-size: 1.02rem; color: var(--ink); }
.brand__sub { font-size: .64rem; color: var(--ink-soft); letter-spacing: .08em; }

.nav__links { display: flex; align-items: center; gap: .3rem; }
.nav__links a {
  color: var(--ink); font-size: .92rem; font-weight: 500;
  padding: .5rem .8rem; border-radius: 8px;
  transition: background .2s, color .2s;
}
.nav__links a:hover { background: var(--paper-2); color: var(--red); }
.nav__links a.is-active { color: var(--red); font-weight: 700; }
.nav__cta {
  margin-left: .4rem;
  background: var(--red); color: #fff !important;
  padding: .55rem 1.1rem !important; border-radius: 999px;
}
.nav__cta:hover { background: var(--red-dark); }

.nav__toggle {
  display: none; width: 44px; height: 44px;
  background: none; border: 0; cursor: pointer;
  flex-direction: column; justify-content: center; gap: 6px;
}
.nav__toggle span {
  display: block; height: 2px; width: 26px; background: var(--ink);
  transition: transform .3s, opacity .3s;
}
.nav__toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- 按钮 ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 700; font-size: .95rem;
  padding: .8rem 1.7rem; border-radius: 999px;
  cursor: pointer; border: 2px solid transparent;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s;
}
.btn--primary { background: var(--red); color: #fff !important; box-shadow: 0 6px 18px rgba(200,16,46,.32); }
.btn--primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(200,16,46,.4); }
.btn--ghost { background: transparent; color: var(--ink) !important; border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: #fff !important; }
.btn--gold { background: var(--gold); color: #3a2d05 !important; }
.btn--gold:hover { background: var(--gold-lt); }

/* ---------- Hero（首页大图） ---------- */
.hero {
  position: relative; color: #fff;
  min-height: min(78vh, 640px);
  display: flex; align-items: center;
  background: #201a16;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.55) saturate(1.05);
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(120,8,20,.72) 0%, rgba(30,20,16,.35) 60%, rgba(30,20,16,.15) 100%);
}
.hero__inner { position: relative; z-index: 2; padding: 3rem 0; }
.hero__eyebrow {
  display: inline-block; letter-spacing: .3em; font-size: .8rem; font-weight: 700;
  color: var(--gold-lt); margin-bottom: 1rem;
  border-left: 3px solid var(--gold); padding-left: .8rem;
}
.hero__title {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(1.9rem, 5.2vw, 3.4rem); line-height: 1.3;
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
}
.hero__title .accent { color: var(--gold-lt); }
.hero__sub {
  margin: 1.3rem 0 2rem; max-width: 620px;
  font-size: clamp(1rem, 2.2vw, 1.18rem); color: #f0e8dc;
  text-shadow: 0 1px 10px rgba(0,0,0,.35);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ---------- 页内小 Hero（子页面标题横幅） ---------- */
.page-hero {
  position: relative; color: #fff;
  min-height: 300px; display: flex; align-items: center;
  background: #201a16; overflow: hidden;
}
.page-hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(.5); }
.page-hero__overlay { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(120,8,20,.7), rgba(30,20,16,.4)); }
.page-hero__inner { position: relative; z-index: 2; padding: 2.5rem 0; }
.page-hero h1 {
  font-family: var(--serif); font-size: clamp(1.7rem, 4.4vw, 2.8rem); font-weight: 700;
  text-shadow: 0 2px 16px rgba(0,0,0,.4);
}
.page-hero .en { display: block; color: var(--gold-lt); letter-spacing: .22em; font-size: .82rem; font-weight: 700; margin-top: .5rem; }

/* ---------- 面包屑 ---------- */
.breadcrumb { background: var(--paper-2); border-bottom: 1px solid var(--line); }
.breadcrumb ol { display: flex; flex-wrap: wrap; align-items: center; gap: .4rem; padding: .8rem 0; font-size: .82rem; color: var(--ink-soft); }
.breadcrumb li::after { content: "›"; margin-left: .4rem; color: var(--gold); }
.breadcrumb li:last-child::after { content: ""; }
.breadcrumb a { color: var(--ink-soft); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb [aria-current] { color: var(--red); font-weight: 700; }

/* ---------- 首页：简介 split ---------- */
.intro-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.intro-grid__media { position: relative; }
.intro-grid__media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.intro-grid__media .stamp {
  position: absolute; right: -14px; bottom: -14px;
  background: var(--red); color: #fff; border-radius: 50%;
  width: 108px; height: 108px; display: grid; place-content: center; text-align: center;
  font-family: var(--serif); line-height: 1.2; box-shadow: var(--shadow);
  border: 3px solid var(--gold-lt);
}
.intro-grid__media .stamp b { font-size: 1.6rem; display: block; }
.intro-grid__media .stamp span { font-size: .62rem; letter-spacing: .1em; }
.intro-grid h2 { font-family: var(--serif); font-size: clamp(1.4rem, 3.4vw, 2.05rem); line-height: 1.4; margin-bottom: 1.1rem; }
.intro-grid h2 .accent { color: var(--red); }
.intro-grid p { color: var(--ink-soft); margin-bottom: 1rem; }
.intro-grid .btn { margin-top: .6rem; }

/* ---------- 事业亮点（8 大事业网格） ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.4rem; }
.feature-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.7rem 1.5rem;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold-lt); }
.feature-card__no {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 700; color: var(--gold);
  display: inline-grid; place-content: center;
  width: 48px; height: 48px; border-radius: 12px; background: var(--paper-2);
  margin-bottom: 1rem;
}
.feature-card h3 { font-size: 1.08rem; margin-bottom: .5rem; }
.feature-card p { font-size: .9rem; color: var(--ink-soft); }

/* ---------- 通用卡片网格（案例 / 声音 / 新闻缩略） ---------- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.8rem; }
.card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card__media { aspect-ratio: 16 / 10; overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.card:hover .card__media img { transform: scale(1.06); }
.card__body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.card__tag {
  align-self: flex-start; font-size: .72rem; font-weight: 700; letter-spacing: .06em;
  color: var(--red); background: #fbe9ec; padding: .25rem .7rem; border-radius: 999px; margin-bottom: .7rem;
}
.card__tag--gold { color: #6b5309; background: #f7edcf; }
.card__title { font-family: var(--serif); font-size: 1.16rem; line-height: 1.4; margin-bottom: .55rem; }
.card__title a { color: var(--ink); }
.card__title a:hover { color: var(--red); }
.card__meta { font-size: .78rem; color: #8a7f74; margin-bottom: .6rem; }
.card__excerpt { font-size: .9rem; color: var(--ink-soft); margin-bottom: 1rem; flex: 1; }
.card__more { align-self: flex-start; font-weight: 700; font-size: .9rem; }
.card__more::after { content: " →"; transition: margin .2s; }
.card:hover .card__more::after { margin-left: .3rem; }

/* 会员之声卡片（带头像圆） */
.voice-card .card__body { align-items: flex-start; }
.voice-card__person { display: flex; align-items: center; gap: .8rem; margin-top: auto; }
.voice-card__avatar {
  width: 46px; height: 46px; border-radius: 50%; object-fit: cover; flex: none;
  border: 2px solid var(--gold-lt);
}
.voice-card__name { font-weight: 700; font-size: .92rem; }
.voice-card__role { font-size: .74rem; color: #8a7f74; }

/* ---------- 数字统计条 ---------- */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1.5rem; text-align: center; }
.stat__num { font-family: var(--serif); font-size: clamp(2rem, 5vw, 2.8rem); font-weight: 700; color: var(--gold-lt); line-height: 1; }
.stat__label { margin-top: .5rem; font-size: .9rem; color: #d9cdbe; letter-spacing: .05em; }

/* ---------- 沿革时间线（about） ---------- */
.timeline { max-width: 760px; margin-inline: auto; position: relative; padding-left: 1.5rem; }
.timeline::before { content: ""; position: absolute; left: 6px; top: 6px; bottom: 6px; width: 2px; background: linear-gradient(var(--red), var(--gold)); }
.timeline__item { position: relative; padding: 0 0 1.8rem 1.6rem; }
.timeline__item::before { content: ""; position: absolute; left: -1.5rem; top: 6px; width: 14px; height: 14px; border-radius: 50%; background: var(--red); border: 3px solid var(--paper); }
.timeline__year { font-family: var(--serif); font-weight: 700; color: var(--red); font-size: 1.05rem; }
.timeline__item p { color: var(--ink-soft); font-size: .94rem; margin-top: .2rem; }

/* ---------- 概要表 ---------- */
.data-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.data-table th, .data-table td { text-align: left; padding: .95rem 1.2rem; border-bottom: 1px solid var(--line); font-size: .94rem; vertical-align: top; }
.data-table th { background: var(--paper-2); width: 32%; font-weight: 700; color: var(--ink); white-space: nowrap; }
.data-table tr:last-child th, .data-table tr:last-child td { border-bottom: 0; }

/* ---------- 代表致辞 ---------- */
.greeting { display: grid; grid-template-columns: 260px 1fr; gap: 2.5rem; align-items: start; }
.greeting__photo img { border-radius: var(--radius); box-shadow: var(--shadow); }
.greeting__photo figcaption { text-align: center; margin-top: .7rem; font-size: .85rem; color: var(--ink-soft); }
.greeting__photo figcaption b { display: block; font-size: 1.05rem; color: var(--ink); font-family: var(--serif); }
.greeting__body p { margin-bottom: 1.1rem; color: var(--ink-soft); }
.greeting__sign { text-align: right; font-family: var(--serif); font-weight: 700; color: var(--ink); }

/* ---------- 内容图文块（活动 / 详情正文通用） ---------- */
.prose { max-width: 820px; margin-inline: auto; }
.prose h2 { font-family: var(--serif); font-size: 1.5rem; margin: 2.2rem 0 1rem; padding-left: .8rem; border-left: 4px solid var(--red); }
.prose h3 { font-size: 1.15rem; margin: 1.6rem 0 .7rem; color: var(--red-dark); }
.prose p { margin-bottom: 1.1rem; color: var(--ink-soft); }
.prose ul.bullets { margin: 0 0 1.2rem; padding-left: 0; }
.prose ul.bullets li { position: relative; padding-left: 1.5rem; margin-bottom: .55rem; color: var(--ink-soft); }
.prose ul.bullets li::before { content: "❖"; position: absolute; left: 0; color: var(--gold); }
.prose figure { margin: 1.6rem 0; }
.prose figure img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; }
.prose figcaption { text-align: center; font-size: .82rem; color: #8a7f74; margin-top: .6rem; }
.lead-quote {
  font-family: var(--serif); font-size: 1.2rem; line-height: 1.9; color: var(--ink);
  border-left: 4px solid var(--gold); background: var(--paper-2);
  padding: 1.3rem 1.5rem; border-radius: 0 var(--radius) var(--radius) 0; margin: 1.6rem 0;
}

/* 图注（inline caption 通用） */
.caption { text-align: center; font-size: .82rem; color: #8a7f74; margin-top: .55rem; }

/* 详情页元信息条 */
.detail-meta { display: flex; flex-wrap: wrap; gap: 1.2rem; padding: 1rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-bottom: 2rem; font-size: .88rem; color: var(--ink-soft); }
.detail-meta b { color: var(--ink); }

/* 小图廊 */
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: .9rem; margin: 1.6rem 0; }
.gallery img { aspect-ratio: 4/3; object-fit: cover; border-radius: 10px; box-shadow: var(--shadow); }

/* 上一/下一 与 返回 */
.detail-nav { display: flex; justify-content: center; margin-top: 2.5rem; }

/* ---------- 联系表单 ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: start; }
.info-list { display: grid; gap: 1.2rem; }
.info-item { display: flex; gap: 1rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.1rem 1.3rem; }
.info-item__icon { flex: none; width: 44px; height: 44px; border-radius: 12px; background: var(--paper-2); display: grid; place-content: center; font-size: 1.3rem; }
.info-item__label { font-size: .74rem; color: #8a7f74; letter-spacing: .08em; }
.info-item__value { font-weight: 600; }
.info-item__value a { color: var(--ink); }
.info-item__value a:hover { color: var(--red); }

.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.5rem, 4vw, 2.4rem); box-shadow: var(--shadow); position: relative; }
.field { margin-bottom: 1.2rem; }
.field label { display: block; font-weight: 700; font-size: .9rem; margin-bottom: .45rem; }
.field label .req { color: var(--red); font-size: .8rem; margin-left: .3rem; }
.field input, .field textarea, .field select {
  width: 100%; font-family: inherit; font-size: 1rem; color: var(--ink);
  background: var(--paper); border: 1.5px solid var(--line); border-radius: 10px;
  padding: .75rem .9rem; transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(200,16,46,.12); background: #fff;
}
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: .8rem; color: #8a7f74; margin: 0 0 1.2rem; }
.form-actions { display: flex; align-items: center; gap: 1rem; }
.btn-submit { width: 100%; justify-content: center; }
.btn-submit .spinner {
  width: 18px; height: 18px; border: 2px solid rgba(255,255,255,.4); border-top-color: #fff;
  border-radius: 50%; animation: spin .7s linear infinite; display: none;
}
.is-loading .btn-submit .spinner { display: inline-block; }
.is-loading .btn-submit .label { opacity: .8; }
@keyframes spin { to { transform: rotate(360deg); } }

/* 假提交成功卡片 */
.form-success {
  display: none; text-align: center; padding: 1rem 0 .5rem;
  animation: fadeUp .5s ease;
}
.form-success.show { display: block; }
.form-success__check {
  width: 74px; height: 74px; margin: 0 auto 1rem; border-radius: 50%;
  background: #e8f6ec; display: grid; place-content: center;
}
.form-success__check svg { width: 40px; height: 40px; }
.form-success__check circle { stroke: #2fa860; stroke-width: 3; fill: none; stroke-dasharray: 166; stroke-dashoffset: 166; animation: draw .5s ease forwards; }
.form-success__check path { stroke: #2fa860; stroke-width: 4; fill: none; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 48; stroke-dashoffset: 48; animation: draw .4s .35s ease forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.form-success h3 { font-family: var(--serif); font-size: 1.4rem; margin-bottom: .5rem; color: var(--ink); }
.form-success p { color: var(--ink-soft); font-size: .95rem; }
.form-success .btn { margin-top: 1.3rem; }
.form.hide { display: none; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

/* ---------- CTA 横幅 ---------- */
.cta-band { position: relative; overflow: hidden; text-align: center; color: #fff; padding: clamp(3rem, 7vw, 5rem) 0; background: linear-gradient(120deg, var(--red-dark) 0%, var(--red) 45%, #a8371f 78%, var(--gold) 140%); }
.cta-band__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(.4); }
.cta-band__overlay { position: absolute; inset: 0; background: radial-gradient(120% 140% at 15% 0%, rgba(0,0,0,.28), rgba(0,0,0,0) 60%); }
.cta-band__inner { position: relative; z-index: 2; }
.cta-band h2 { font-family: var(--serif); font-size: clamp(1.5rem, 4vw, 2.4rem); margin-bottom: 1rem; }
.cta-band p { max-width: 640px; margin: 0 auto 1.8rem; color: #f0e8dc; }
.cta-band .btn--ghost { color: #fff !important; border-color: #fff; }
.cta-band .btn--ghost:hover { background: #fff; color: var(--ink) !important; }

/* ---------- 新闻列表（行式） ---------- */
.news-list { max-width: 840px; margin-inline: auto; }
.news-row { display: flex; gap: 1.4rem; align-items: baseline; padding: 1.2rem .3rem; border-bottom: 1px solid var(--line); }
.news-row time { flex: none; font-family: var(--serif); color: var(--red); font-weight: 700; font-size: .92rem; min-width: 96px; }
.news-row .news-cat { flex: none; font-size: .7rem; font-weight: 700; padding: .2rem .6rem; border-radius: 999px; background: var(--paper-2); color: var(--ink-soft); }
.news-row .news-ttl { color: var(--ink); }
.news-row:hover .news-ttl { color: var(--red); }

/* ---------- 页脚 ---------- */
.site-footer { background: #1c1611; color: #cfc4b6; padding: clamp(2.8rem, 6vw, 4rem) 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 2.5rem; padding-bottom: 2.5rem; }
.footer-brand { display: flex; align-items: center; gap: .7rem; margin-bottom: 1rem; }
.footer-brand .brand__mark { width: 46px; height: 46px; font-size: 1.3rem; }
.footer-brand .brand__logo { width: 54px; height: 54px; }
.footer-brand__jp { font-family: var(--serif); font-weight: 700; font-size: 1.1rem; color: #fff; }
.footer-brand__en { font-size: .68rem; letter-spacing: .1em; color: #9a8f80; }
.footer-about { font-size: .9rem; line-height: 1.9; color: #b3a999; max-width: 40ch; }
.footer-col h4 { color: #fff; font-size: .95rem; margin-bottom: 1rem; position: relative; padding-bottom: .5rem; }
.footer-col h4::after { content: ""; position: absolute; left: 0; bottom: 0; width: 28px; height: 2px; background: var(--gold); }
.footer-col ul li { margin-bottom: .6rem; }
.footer-col a { color: #cfc4b6; font-size: .9rem; }
.footer-col a:hover { color: var(--gold-lt); }
.footer-contact li { display: flex; gap: .6rem; font-size: .9rem; margin-bottom: .8rem; color: #cfc4b6; }
.footer-contact .ic { color: var(--gold); flex: none; }
.footer-bottom { border-top: 1px solid #33291f; padding: 1.3rem 0; text-align: center; font-size: .8rem; color: #8a7f70; }
.footer-bottom a { color: #b3a999; }

/* ---------- 杂项 ---------- */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.divider-note { text-align: center; color: var(--ink-soft); font-size: .88rem; max-width: 640px; margin: 1.5rem auto 0; }
.badge-inline { display: inline-block; background: var(--paper-2); border: 1px solid var(--line); border-radius: 999px; padding: .3rem .9rem; font-size: .82rem; color: var(--ink-soft); margin: .2rem; }

/* ---------- 响应式 ---------- */
@media (max-width: 920px) {
  .intro-grid, .greeting, .contact-grid { grid-template-columns: 1fr; }
  .greeting__photo { max-width: 260px; margin-inline: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-about { max-width: none; }
}
@media (max-width: 760px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed; inset: var(--nav-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper); border-bottom: 1px solid var(--line);
    padding: .6rem 1.2rem 1.2rem;
    transform: translateY(-140%); transition: transform .35s ease;
    box-shadow: var(--shadow-lg); max-height: calc(100vh - var(--nav-h)); overflow-y: auto;
  }
  .nav__links.open { transform: translateY(0); }
  .nav__links a { padding: .85rem .6rem; border-bottom: 1px solid var(--line); }
  .nav__cta { margin: .8rem 0 0; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .news-row { flex-wrap: wrap; gap: .5rem 1rem; }
  .detail-meta { gap: .5rem 1.2rem; }
}
