/* ============================================
   Mr. Michael - 现代化奢侈品牌风格
   米白底、衬线中文、金属色点缀、大量留白
   ============================================ */

:root {
  --bg: #fafaf8;
  --bg-warm: #f5f2ec;
  --bg-dark: #1a1a1a;
  --surface: #ffffff;
  --ink: #1a1a1a;
  --ink-muted: #5a5548;
  --ink-light: #8a8578;
  --line: rgba(0, 0, 0, 0.08);
  --line-strong: rgba(0, 0, 0, 0.15);
  --accent: #B8956A;      /* 香槟金 */
  --accent-dark: #8f6f4a;
  --max: 1280px;
  --max-narrow: 820px;

  /* 衬线中文可用思源宋体；英文用 Cormorant / Playfair 风格 */
  --font-serif: "Noto Serif SC", "Source Han Serif SC", "SimSun", "PingFang SC", serif;
  --font-sans: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "PingFang SC",
               "Hiragino Sans GB", "Microsoft YaHei", "Source Han Sans SC", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 40px;
}
.container-narrow {
  max-width: var(--max-narrow);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ 导航 ============ */
.nav {
  position: sticky;
  top: 0;
  background: rgba(250, 250, 248, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 0.5px solid var(--line);
  z-index: 100;
}
.nav-inner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 48px;
  height: 88px;
  padding-left: 12px;
}
.logo { display: flex; flex-direction: column; line-height: 1.2; }
.logo-name {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1.5px;
  color: var(--ink);
}
.logo-sub {
  font-size: 10px;
  color: var(--ink-light);
  letter-spacing: 2.5px;
  margin-top: 3px;
}

/* 图片 Logo：导航栏上黑色 Logo */
.logo-image { display: flex; align-items: center; padding: 6px 0; flex-shrink: 0; }
.logo-image img {
  height: 88px;
  width: auto;
  display: block;
}
@media (max-width: 720px) {
  .logo-image img { height: 48px; }
}

/* 图片 Logo：页脚深色背景上的白色 Logo */
.logo-image-footer img { height: 88px; }

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  align-items: center;
  flex-wrap: nowrap;
}
.nav-links a {
  font-size: 15px;
  color: var(--ink-muted);
  letter-spacing: 1px;
  position: relative;
  transition: color 0.2s;
  padding: 8px 0;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0; right: 0;
  height: 1px;
  background: var(--accent);
}

.nav-cta {
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--accent);
  border: 0.5px solid var(--accent);
  padding: 8px 16px;
  border-radius: 2px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: auto;
  display: inline-block;
  cursor: default;
}

.nav-toggle { display: none; font-size: 22px; color: var(--ink); }

/* ============ Hero ============ */
.hero {
  aspect-ratio: 21 / 9;
  min-height: 420px;
  max-height: 820px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-warm);
  position: relative;
  padding: 80px 24px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(250,250,248,0.3) 0%, rgba(245,242,236,0.6) 100%);
  z-index: 1;
}
/* 视频背景：无蒙版，21:9 宽幅比例 */
.hero--video::before {
  display: none;
}
.hero--video {
  min-height: unset;
  max-height: unset;
  aspect-ratio: 21 / 9;
  padding: 0;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-inner { position: relative; z-index: 2; max-width: 800px; }

.eyebrow {
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 4px;
  margin-bottom: 32px;
  text-transform: uppercase;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
  white-space: pre-line;
}
.hero-subtitle {
  font-size: 12px;
  color: var(--ink-muted);
  letter-spacing: 3px;
  margin-bottom: 48px;
}

.hero-actions {
  display: inline-flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.btn-text {
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--ink);
  padding: 8px 0;
  border-bottom: 0.5px solid var(--ink);
  transition: color 0.2s, border-color 0.2s;
}
.btn-text:hover { color: var(--accent); border-color: var(--accent); }
.btn-text-muted {
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--ink-light);
  padding: 8px 0;
  transition: color 0.2s;
}
.btn-text-muted:hover { color: var(--ink); }

.btn-outline {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--ink);
  border: 0.5px solid var(--ink);
  padding: 14px 32px;
  border-radius: 2px;
  transition: all 0.3s;
}
.btn-outline:hover { background: var(--ink); color: #fff; }

/* ============ 通用区块 ============ */
.section { padding: 120px 0; }
.section--compact { padding: 72px 0; }
.section-alt { background: var(--bg-warm); }
.section-dark { background: var(--bg-dark); color: #d4ccb8; }
.section-dark .ink { color: #fff; }
.section-dark .ink-muted { color: #a8a299; }

.section-head {
  text-align: center;
  margin-bottom: 72px;
}
.section-head .eyebrow { margin-bottom: 16px; }
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.3px;
  white-space: pre-line;
}
.section-lead {
  font-size: 15px;
  color: var(--ink-muted);
  margin-top: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.sub-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  margin: 48px 0 20px;
}

/* ============ 品牌介绍 - 左右图文 ============ */
.editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.editorial.reversed .editorial-img { order: 2; }
.editorial-img {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #e8e2d4 0%, #d4ccb8 100%);
  border-radius: 2px;
  overflow: hidden;
}
.editorial-img img { width: 100%; height: 100%; object-fit: cover; }

.editorial-body .section-title { text-align: left; margin-bottom: 28px; }
.editorial-body .eyebrow { margin-bottom: 16px; }
.editorial-body p {
  font-size: 15px;
  color: var(--ink-muted);
  line-height: 1.95;
  margin-bottom: 20px;
  white-space: pre-line;
}

/* ============ 服务网格 - 杂志式 ============ */
/* 首页展示 6 项服务：桌面 3 列 × 2 行；平板 2 列；手机 1 列 */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  row-gap: 48px;
}
.service-card {
  text-decoration: none;
  display: block;
}
.service-card .service-img {
  aspect-ratio: 3/4;
  background: #e8e2d4;
  overflow: hidden;
  margin-bottom: 20px;
  border-radius: 2px;
  transition: transform 0.4s ease;
}
.service-card:hover .service-img { transform: scale(1.02); }
.service-card .service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-img img { transform: scale(1.05); }
.service-num {
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.service-title-zh {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 4px;
}
.service-title-en {
  font-size: 11px;
  color: var(--ink-light);
  letter-spacing: 2px;
}
.service-summary {
  font-size: 13px;
  color: var(--ink-muted);
  margin-top: 12px;
  line-height: 1.7;
}

/* 关于我们 - 首页居中版式 */
.about-welcome {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.about-welcome-logo {
  height: 200px;
  width: auto;
  margin: 0 auto 36px;
  display: block;
}
.about-welcome-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 20px;
}
.about-welcome-intro {
  font-size: 15px;
  color: var(--ink-muted);
  line-height: 1.95;
  white-space: pre-line;
}

/* 服务亮点：图片 4:3，块间距 */
.editorial--highlight .editorial-img {
  aspect-ratio: 4 / 3;
}
.editorial--spaced + .editorial--spaced {
  margin-top: 96px;
}

/* 洗护范围：首页 4 列并排 */
.services-grid--scope {
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
@media (max-width: 980px) {
  .services-grid--scope { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .services-grid--scope { grid-template-columns: 1fr 1fr; gap: 20px; }
}

/* 服务亮点：三列，金色细线分割，无盒子 */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px;
}
.highlight-card {
  padding-top: 32px;
  border-top: 0.5px solid var(--accent);
}
.highlight-num {
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 3px;
  margin-bottom: 24px;
}
.highlight-title-zh {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 8px;
}
.highlight-title-en {
  font-size: 11px;
  color: var(--ink-light);
  letter-spacing: 2.5px;
  margin-bottom: 28px;
}
.highlight-summary {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.9;
}
.highlight-content {
  font-size: 13px;
  color: var(--ink-light);
  line-height: 1.85;
  margin-top: 16px;
}
@media (max-width: 980px) {
  .highlights-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* 服务详情页 - 一个服务一个大区块 */
.service-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 0.5px solid var(--line);
}
.service-feature:last-child { border-bottom: none; }
.service-feature.reversed .service-feature-img { order: 2; }
.service-feature-img {
  aspect-ratio: 4/5;
  background: #e8e2d4;
  overflow: hidden;
  border-radius: 2px;
}
.service-feature-img img { width: 100%; height: 100%; object-fit: cover; }

/* ============ 会员卡片 ============ */
.member-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.member-card {
  background: var(--surface);
  padding: 48px 32px;
  border: 0.5px solid var(--line);
  text-align: center;
  transition: transform 0.3s, border-color 0.3s;
}
.member-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}
.member-level {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 8px;
}
.member-discount {
  font-family: var(--font-serif);
  font-size: 48px;
  color: var(--accent);
  font-weight: 400;
  margin: 16px 0;
  letter-spacing: -1px;
}
.member-threshold {
  font-size: 13px;
  color: var(--ink-light);
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}
.member-benefits {
  font-size: 13px;
  color: var(--ink-muted);
  line-height: 1.8;
  padding-top: 20px;
  border-top: 0.5px solid var(--line);
}

/* ============ 会员权益说明 ============ */
.benefits-panel {
  max-width: 720px;
  margin: 96px auto 0;
  text-align: center;
}
.benefits-list {
  margin-top: 24px;
}
.benefit-line {
  font-size: 15px;
  color: var(--ink-muted);
  line-height: 1.9;
  margin: 0 0 12px;
}
.benefit-line:last-child {
  margin-bottom: 0;
}

/* ============ 门店卡片 ============ */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}
.shop-card {
  background: var(--surface);
  border: 0.5px solid var(--line);
  overflow: hidden;
  transition: transform 0.3s;
}
.shop-card:hover { transform: translateY(-3px); }
.shop-img {
  aspect-ratio: 16/10;
  background: #e8e2d4;
  overflow: hidden;
}
.shop-img img { width: 100%; height: 100%; object-fit: cover; }
.shop-body { padding: 32px; }
.shop-district {
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.shop-name {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--ink);
  margin-bottom: 20px;
}
.shop-row {
  display: flex;
  font-size: 13px;
  color: var(--ink-muted);
  padding: 8px 0;
  border-top: 0.5px solid var(--line);
}
.shop-row-label {
  min-width: 60px;
  color: var(--ink-light);
  letter-spacing: 1px;
  font-size: 11px;
  padding-top: 2px;
}

/* ============ 新闻列表 ============ */
.news-grid {
  display: flex;
  flex-direction: column;
}
.news-card {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 48px;
  align-items: start;
  padding: 48px 0;
  border-bottom: 0.5px solid var(--line);
  text-decoration: none;
}
.news-card:first-child { border-top: 0.5px solid var(--line); }
.news-img {
  aspect-ratio: 3/2;
  background: #e8e2d4;
  overflow: hidden;
  border-radius: 2px;
  flex-shrink: 0;
}
.news-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.news-card:hover .news-img img { transform: scale(1.04); }
.news-body { padding-top: 8px; }
.news-date {
  font-size: 11px;
  color: var(--ink-light);
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.news-title {
  font-family: var(--font-serif);
  font-size: clamp(19px, 1.8vw, 24px);
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.4;
  transition: color 0.2s;
}
.news-card:hover .news-title { color: var(--accent); }
.news-summary {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.85;
  margin-bottom: 18px;
}
.news-more {
  font-size: 12.5px;
  letter-spacing: 1px;
  color: var(--accent);
  opacity: 0.75;
  transition: opacity 0.2s;
}
.news-card:hover .news-more { opacity: 1; }
@media (max-width: 860px) {
  .news-card { grid-template-columns: 260px 1fr; gap: 32px; }
}
@media (max-width: 620px) {
  .news-card { grid-template-columns: 1fr; gap: 20px; padding: 36px 0; }
  .news-body { padding-top: 0; }
}

/* ============ 文章详情 ============ */
.article-header {
  padding: 96px 24px 48px;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.article-header .date { font-size: 11px; color: var(--accent); letter-spacing: 3px; margin-bottom: 24px; }
.article-header h1 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  line-height: 1.25;
}
.article-cover {
  max-width: 1080px;
  margin: 48px auto;
  aspect-ratio: 16/9;
  background: #e8e2d4;
  overflow: hidden;
}
.article-cover img { width: 100%; height: 100%; object-fit: cover; }

.prose {
  max-width: var(--max-narrow);
  margin: 0 auto;
  padding: 0 24px 96px;
  font-size: 16px;
  line-height: 1.95;
  color: var(--ink-muted);
}
.prose p { margin-bottom: 22px; }
.prose h2 { font-family: var(--font-serif); font-size: 26px; font-weight: 400; color: var(--ink); margin: 48px 0 16px; }
.prose h3 { font-family: var(--font-serif); font-size: 20px; font-weight: 400; color: var(--ink); margin: 36px 0 12px; }
.prose img { margin: 32px 0; border-radius: 2px; }
.prose a { color: var(--accent); border-bottom: 0.5px solid var(--accent); }
.prose blockquote {
  border-left: 2px solid var(--accent);
  padding-left: 24px;
  margin: 32px 0;
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--ink);
  font-style: italic;
}

/* ============ 页面大标题 Hero ============ */
.page-hero {
  min-height: 48vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px 24px;
  background: var(--bg-warm);
  background-size: cover;
  background-position: center;
  color: var(--ink);
  position: relative;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(250,250,248,0.6), rgba(245,242,236,0.8));
}
.page-hero-inner { position: relative; z-index: 1; max-width: 800px; }
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  line-height: 1.2;
  white-space: pre-line;
}
.page-hero-sub {
  font-size: 14px;
  color: var(--ink-muted);
  margin-top: 20px;
  letter-spacing: 1px;
}

/* ============ 联系页 ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.contact-info-item {
  padding: 24px 0;
  border-bottom: 0.5px solid var(--line);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-label {
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.contact-info-value {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--ink);
}
.contact-info-value a { color: inherit; }

.contact-qr-group { display: flex; gap: 32px; flex-wrap: wrap; }
.contact-qr {
  text-align: center;
}
.contact-qr img {
  width: 140px;
  height: 140px;
  border: 0.5px solid var(--line);
  padding: 8px;
  background: #fff;
  margin-bottom: 12px;
}
.contact-qr-label {
  font-size: 12px;
  color: var(--ink-muted);
  letter-spacing: 1px;
}

/* ============ 浮动企微咨询按钮 ============ */
.float-wework {
  position: fixed;
  right: 24px;
  bottom: 32px;
  z-index: 99;
  background: var(--ink);
  color: #fff;
  padding: 14px 18px;
  border-radius: 2px;
  font-size: 12px;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.float-wework:hover {
  background: var(--accent);
  transform: translateY(-2px);
}
.float-wework-popup {
  position: fixed;
  right: 24px;
  bottom: 90px;
  z-index: 100;
  background: #fff;
  padding: 24px;
  border-radius: 2px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  display: none;
  text-align: center;
  width: 220px;
}
.float-wework-popup.open { display: block; }
.float-wework-popup img {
  width: 172px;
  height: 172px;
  margin-bottom: 12px;
}
.float-wework-popup .label {
  font-size: 12px;
  color: var(--ink-muted);
  letter-spacing: 1px;
}
.float-wework-popup .close {
  position: absolute;
  top: 8px; right: 12px;
  font-size: 18px;
  color: var(--ink-light);
  cursor: pointer;
}

/* ============ 联系横幅 ============ */
.contact-banner { background: var(--bg); }
.contact-banner-inner {
  display: flex;
  align-items: center;
  gap: 64px;
  flex-wrap: wrap;
}
.contact-banner-text { flex: 0 0 auto; }
.contact-banner-text .section-title { margin-top: 12px; }
.contact-banner-text .section-lead { margin-top: 10px; font-size: 13px; color: var(--ink-muted); }
.contact-banner-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-banner-item {
  display: flex;
  align-items: baseline;
  gap: 20px;
  border-bottom: 0.5px solid var(--line);
  padding-bottom: 18px;
}
.contact-banner-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--ink-muted);
  flex: 0 0 64px;
}
.contact-banner-value {
  font-size: 14px;
  color: var(--ink);
  letter-spacing: 0.5px;
}
.contact-banner-cta { flex: 0 0 auto; }

@media (max-width: 720px) {
  .contact-banner-inner { flex-direction: column; gap: 36px; align-items: flex-start; }
  .contact-banner-info { width: 100%; }
}

/* ============ 页脚 ============ */
.footer {
  background: var(--bg-dark);
  color: #8a8578;
  padding: 80px 0 40px;
  font-size: 13px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 0.5px solid rgba(255,255,255,0.08);
}
.footer-brand .logo-image { align-self: flex-start; display: inline-flex; margin-left: -27px; }
.footer-brand .logo-name { color: #fff; font-size: 18px; }
.footer-brand .logo-sub { color: #8a8578; margin-top: 8px; }
.footer-brand p {
  margin-top: 20px;
  line-height: 1.8;
  max-width: 320px;
  color: #8a8578;
}
.footer-col h4 {
  font-size: 11px;
  color: #d4ccb8;
  letter-spacing: 3px;
  margin-bottom: 20px;
  font-weight: 500;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: #8a8578; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  margin-top: 32px;
  text-align: center;
  font-size: 12px;
  color: #6a665e;
  letter-spacing: 1px;
}
.footer-bottom a { color: inherit; }

/* ============ 服务流程 ============ */
.process-list {
  max-width: 860px;
  margin: 0 auto;
}
.process-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 48px;
  padding: 48px 0;
  border-bottom: 0.5px solid var(--line);
  align-items: start;
}
.process-item:first-child {
  border-top: 0.5px solid var(--line);
}
.process-num {
  font-family: var(--font-serif);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--accent);
  padding-top: 4px;
  text-align: center;
  line-height: 1;
}
.process-title {
  font-family: var(--font-serif);
  font-size: clamp(17px, 1.8vw, 21px);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 14px;
  line-height: 1.4;
}
.process-desc {
  font-size: 14.5px;
  color: var(--ink-muted);
  line-height: 1.95;
}
@media (max-width: 680px) {
  .process-item {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 32px 0;
  }
  .process-num { text-align: left; padding-top: 0; }
}

/* ============ 入场动画 ============ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ 响应式 ============ */
@media (max-width: 980px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; row-gap: 48px; }
  .member-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .container { padding: 0 24px; }
  .nav-inner { height: 64px; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 0.5px solid var(--line);
  }
  .section { padding: 72px 0; }
  .section-head { margin-bottom: 48px; }
  .editorial, .service-feature, .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .editorial.reversed .editorial-img,
  .service-feature.reversed .service-feature-img { order: 0; }
  .services-grid, .member-grid, .shop-grid {
    grid-template-columns: 1fr;
  }
  .benefits-panel { margin-top: 64px; }
