/* 富爱俱乐部 · 南京 · style.css */
/* 设计风格：六朝古都·文人风骨 — 玄武紫深底+古铜发光+石青冷调 */
/* Font A: Noto Serif SC 300, 0.06em · Trust D · Footer D · 圆角 4px */
/* Hero: 右文左图竖轴·博物馆展陈风格（深色站第3·与深圳/重庆并列）*/

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+SC:wght@300;400&family=Noto+Sans+SC:wght@300;400&family=EB+Garamond:ital,wght@1,400&display=swap');

/* ── Tokens ── 深色站 */
:root {
  --purple: #2a1648;
  --purple-light: #3d2061;
  --purple-deep: #150828;
  --bronze: #c08948;
  --bronze-light: #d9a366;
  --bronze-glow: rgba(192,137,72,0.50);
  --teal: #6e8fa3;
  --teal-light: #9bb6c5;
  --bg: #1a0e2e;
  --bg-alt: #251339;
  --bg-deep: #110820;
  --bg-dark: #0e0620;
  --ink: #f3edff;
  --ink-light: rgba(243,237,255,0.82);
  --ink-muted: rgba(243,237,255,0.58);
  --ink-faint: rgba(243,237,255,0.38);
  --on-dark: #f3edff;
  --on-dark-muted: rgba(243,237,255,0.62);
  --on-dark-faint: rgba(243,237,255,0.42);
  --border: rgba(192,137,72,0.20);
  --border-dark: rgba(192,137,72,0.12);
  --radius: 4px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: 'Noto Sans SC', 'PingFang SC', sans-serif;
  font-weight: 300;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
}

/* ── Typography ── */
.t-label {
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 14px; font-weight: 300;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--bronze);
}
.t-hero {
  font-family: 'Noto Serif SC', serif;
  font-size: clamp(2.25rem, 5.5vw, 4.5rem);
  font-weight: 300; line-height: 1.25; letter-spacing: 0.06em;
}
.t-h2 {
  font-family: 'Noto Serif SC', serif;
  font-size: clamp(1.625rem, 3vw, 2.5rem);
  font-weight: 300; line-height: 1.4; letter-spacing: 0.06em;
}
.t-h3 {
  font-family: 'Noto Serif SC', serif;
  font-size: 18px; font-weight: 300;
  line-height: 1.5; letter-spacing: 0.06em;
}
.t-body { font-size: 16px; font-weight: 300; line-height: 1.95; letter-spacing: 0.02em; }
.t-small { font-size: 14px; font-weight: 300; line-height: 1.85; letter-spacing: 0.02em; }
.t-num { font-family: 'EB Garamond', serif; font-style: italic; color: var(--bronze); }

/* ── Layout ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.section { padding: 96px 0; }
.section-dark { background: var(--bg-dark); color: var(--on-dark); }
.section-alt { background: var(--bg-alt); }
.section { position: relative; }

/* ── Reveal ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ══════════════════════════════
   NAV
══════════════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px 0;
  background: rgba(17, 8, 32, 0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-dark);
  transition: background 0.3s, box-shadow 0.3s;
}
#navbar.scrolled {
  background: rgba(17, 8, 32, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; margin: 0 auto; padding: 0 40px;
}
.nav-logo {
  font-family: 'Noto Serif SC', serif;
  font-size: 18px; font-weight: 300; letter-spacing: 0.08em;
  color: var(--on-dark); text-decoration: none;
}
.nav-logo span { color: var(--bronze-light); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 14px; font-weight: 300; letter-spacing: 0.06em;
  color: var(--on-dark-muted); text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--on-dark); }
.nav-cta {
  display: inline-flex; align-items: center;
  height: 44px; padding: 0 24px;
  font-size: 14px; font-weight: 300; letter-spacing: 0.12em;
  background: var(--bronze); color: #fff !important;
  border: none; border-radius: var(--radius);
  text-decoration: none; transition: background 0.2s;
}
.nav-cta:hover { background: var(--bronze-light); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span {
  display: block; width: 22px; height: 1px;
  background: var(--on-dark); transition: transform 0.3s;
}
#navMobile {
  display: none; flex-direction: column; gap: 0;
  background: rgba(17, 8, 32, 0.98);
  padding: 16px 0; border-top: 1px solid var(--border-dark);
}
#navMobile.open { display: flex; }
#navMobile a {
  font-size: 15px; font-weight: 300; letter-spacing: 0.06em;
  color: var(--on-dark-muted); text-decoration: none;
  padding: 14px 40px; border-bottom: 1px solid var(--border-dark);
  transition: color 0.2s;
}
#navMobile a:hover { color: var(--on-dark); }
#navMobile .nav-cta {
  margin: 16px 40px 8px; text-align: center;
  border-radius: var(--radius); height: auto; padding: 12px 20px;
}

/* ══════════════════════════════
   HERO — 右文左图竖轴·博物馆展陈
   左：深紫竖柱·展陈装饰
   右：浅底大字·文人风骨
══════════════════════════════ */
.hero-section {
  min-height: 100dvh;
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  position: relative;
  overflow: hidden;
}

/* Left exhibit panel — 玄武深紫·古铜博物馆展陈 */
.hero-exhibit {
  background: var(--purple-deep);
  position: relative;
  display: flex; flex-direction: column;
  justify-content: space-between;
  padding: 140px 40px 64px;
  overflow: hidden;
  border-right: 1px solid var(--border);
}
.hero-exhibit::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(192,137,72,0.15) 0%, transparent 55%),
              radial-gradient(ellipse at 70% 80%, rgba(110,143,163,0.12) 0%, transparent 55%);
}
.hero-exhibit::after {
  content: '';
  position: absolute; left: 40px; top: 110px; bottom: 80px; width: 2px;
  background: linear-gradient(to bottom, transparent, var(--bronze) 30%, var(--bronze) 70%, transparent);
  box-shadow: 0 0 16px var(--bronze-glow);
}
.hero-exhibit-top { position: relative; z-index: 1; padding-left: 16px; }
.hero-exhibit-num {
  font-family: 'EB Garamond', serif;
  font-style: italic; font-size: 5rem;
  color: var(--bronze); opacity: 0.30; line-height: 1;
  margin-bottom: 8px;
  text-shadow: 0 0 24px var(--bronze-glow);
}
.hero-exhibit-label {
  font-family: 'Noto Serif SC', serif;
  font-size: 12px; font-weight: 300; letter-spacing: 0.28em;
  color: var(--bronze-light); text-transform: uppercase;
}
.hero-exhibit-center {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 28px;
}
.hero-exhibit-watermark {
  font-family: 'Noto Serif SC', serif;
  font-size: clamp(10rem, 18vw, 16rem);
  font-weight: 300;
  background: linear-gradient(135deg, rgba(192,137,72,0.22) 0%, rgba(110,143,163,0.10) 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  line-height: 0.9; letter-spacing: -0.02em;
  text-align: center;
}
.hero-exhibit-vline {
  width: 1px; height: 64px;
  background: linear-gradient(to bottom, var(--bronze), transparent);
  box-shadow: 0 0 12px var(--bronze-glow);
}
.hero-exhibit-badge {
  font-family: 'Noto Serif SC', serif;
  font-size: 13px; font-weight: 300; letter-spacing: 0.16em;
  color: var(--bronze-light);
  border: 1px solid var(--border);
  background: rgba(192,137,72,0.06);
  padding: 10px 24px; border-radius: var(--radius);
  text-align: center;
}
.hero-exhibit-stats {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; gap: 18px;
  padding-left: 16px;
}
.hero-exhibit-stat {
  display: flex; flex-direction: column; gap: 4px;
  border-left: 2px solid var(--bronze);
  padding-left: 18px;
}
.hero-exhibit-stat-num {
  font-family: 'EB Garamond', serif;
  font-style: italic; font-size: 2rem;
  color: var(--bronze-light); line-height: 1;
}
.hero-exhibit-stat-label { color: var(--ink-muted); }

/* Right content panel — 玄武紫底·文人风骨 */
.hero-content {
  background: var(--bg);
  display: flex; flex-direction: column; justify-content: center;
  padding: 120px 72px 80px 64px;
  position: relative;
  overflow: hidden;
}
.hero-content::before {
  content: '陵';
  position: absolute;
  right: -3rem; bottom: -6rem;
  font-family: 'Noto Serif SC', serif;
  font-size: clamp(20rem, 38vw, 32rem);
  font-weight: 300;
  color: rgba(192,137,72,0.05);
  line-height: 0.85; pointer-events: none;
  letter-spacing: -0.02em;
}
.hero-content::after {
  content: '';
  position: absolute; right: 8%; top: 18%;
  width: 80px; height: 1px;
  background: linear-gradient(to right, transparent, var(--bronze));
  box-shadow: 0 0 8px var(--bronze-glow);
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 32px;
}
.hero-eyebrow-diamond {
  width: 6px; height: 6px;
  background: var(--bronze);
  transform: rotate(45deg);
}
.hero-title {
  color: var(--ink); margin-bottom: 28px;
  position: relative; z-index: 2;
}
.hero-title em {
  font-style: normal; color: var(--bronze-light);
  display: inline-block; padding-left: 22px;
  position: relative; margin-top: 10px;
}
.hero-title em::before {
  content: '';
  position: absolute; left: 0; top: 14%; bottom: 14%;
  width: 3px;
  background: var(--bronze);
  box-shadow: 0 0 14px var(--bronze-glow);
}
.hero-body {
  color: var(--ink-light); max-width: 42ch; margin-bottom: 40px;
  position: relative; z-index: 2;
}
.hero-cta {
  display: flex; align-items: center; gap: 20px;
  flex-wrap: wrap; margin-bottom: 36px;
  position: relative; z-index: 2;
}
.btn-primary {
  display: inline-block;
  font-size: 14px; font-weight: 300; letter-spacing: 0.12em;
  background: var(--bronze); color: #fff;
  padding: 14px 32px; border-radius: var(--radius);
  text-decoration: none; transition: background 0.2s, box-shadow 0.2s;
  min-height: 44px; line-height: 1.4;
  box-shadow: 0 0 24px rgba(192,137,72,0.20);
}
.btn-primary:hover { background: var(--bronze-light); box-shadow: 0 0 32px rgba(192,137,72,0.32); }
.btn-text {
  display: inline-block;
  font-size: 14px; font-weight: 300; letter-spacing: 0.06em;
  color: var(--bronze-light); padding: 14px 0;
  text-decoration: none; border-bottom: 1px solid rgba(192,137,72,0.30);
  transition: color 0.2s, border-color 0.2s;
  min-height: 44px; line-height: 1.4;
}
.btn-text:hover { color: var(--bronze); border-color: var(--bronze); }
.hero-footnote { color: var(--ink-faint); }
.hero-tags {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 4px;
  position: relative; z-index: 2;
}
.hero-tag {
  display: inline-block;
  padding: 8px 16px;
  font-size: 13px; font-weight: 300; letter-spacing: 0.06em;
  color: var(--bronze-light);
  background: rgba(192,137,72,0.08);
  border: 1px solid var(--border);
  border-radius: 999px;
}

/* ══════════════════════════════
   TRUST STRIP D — 浅色品牌侧边
══════════════════════════════ */
.trust-section {
  background: var(--bg-deep);
  padding: 72px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}
.trust-section::before {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 120px; height: 1px;
  background: var(--bronze);
  box-shadow: 0 0 16px var(--bronze-glow);
}
.trust-sidebar {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px; align-items: center;
}
.trust-brand-title {
  font-family: 'Noto Serif SC', serif;
  font-size: clamp(1.25rem, 2.5vw, 1.875rem);
  font-weight: 300; line-height: 1.5; letter-spacing: 0.06em;
  color: var(--ink); margin-bottom: 18px;
}
.trust-brand-sub { color: var(--ink-muted); max-width: 38ch; }
.trust-nums-side { display: flex; flex-direction: column; gap: 0; }
.trust-num-item {
  display: flex; align-items: center; gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border-dark);
  position: relative;
}
.trust-num-item:first-child { border-top: 1px solid var(--border-dark); }
.trust-num-item::before {
  content: '';
  position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 3px; height: 30%;
  background: var(--bronze);
  box-shadow: 0 0 8px var(--bronze-glow);
}
.trust-num-big {
  font-family: 'EB Garamond', serif;
  font-style: italic; font-size: 2.5rem;
  color: var(--bronze-light); line-height: 1;
  white-space: nowrap; min-width: 100px;
  padding-left: 20px;
  text-shadow: 0 0 20px rgba(192,137,72,0.20);
}
.trust-num-text { display: flex; flex-direction: column; gap: 4px; }
.trust-num-label { font-size: 14px; font-weight: 300; color: var(--ink); letter-spacing: 0.04em; }
.trust-num-sub { color: var(--ink-muted); font-size: 13px; }

/* ══════════════════════════════
   ABOUT — 左文右列表 (A)
══════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.about-label { margin-bottom: 24px; }
.about-title { margin-bottom: 32px; }
.about-body { color: var(--ink-light); margin-bottom: 40px; }
.about-cta {}
.about-list { display: flex; flex-direction: column; gap: 0; }
.about-list-item {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border-dark);
  transition: background 0.2s;
}
.about-list-item:first-child { border-top: 1px solid var(--border-dark); }
.about-list-item:hover { background: rgba(192,137,72,0.04); }
.about-list-num {
  font-family: 'EB Garamond', serif;
  font-style: italic; font-size: 1.625rem;
  color: var(--bronze-light); line-height: 1;
  flex-shrink: 0; padding-top: 4px;
  text-shadow: 0 0 12px rgba(192,137,72,0.30);
}
.about-list-content { display: flex; flex-direction: column; gap: 6px; }
.about-list-title {
  font-family: 'Noto Serif SC', serif;
  font-size: 15px; font-weight: 300;
  letter-spacing: 0.06em; color: var(--ink);
}
.about-list-desc { color: var(--ink-muted); }

/* ══════════════════════════════
   SERVICES — 竖向横排大卡片 (B)
══════════════════════════════ */
.services-header { margin-bottom: 48px; }
.service-h-cards { display: flex; flex-direction: column; gap: 0; }
.service-h-card {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border-dark);
  align-items: start;
  transition: background 0.2s;
}
.service-h-card:first-child { border-top: 1px solid var(--border-dark); }
.service-h-card:hover { background: rgba(192,137,72,0.03); }
.service-h-num {
  font-family: 'EB Garamond', serif;
  font-style: italic; font-size: 3.5rem;
  color: var(--bronze-light); line-height: 1; padding-top: 4px;
  text-shadow: 0 0 24px rgba(192,137,72,0.25);
}
.service-h-content { display: flex; flex-direction: column; gap: 14px; }
.service-h-title { color: var(--ink); }
.service-h-body { color: var(--ink-light); max-width: 54ch; }
.service-h-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.service-h-tag {
  font-size: 12px; letter-spacing: 0.06em;
  color: var(--teal-light);
  background: rgba(110,143,163,0.10);
  border: 1px solid rgba(110,143,163,0.28);
  padding: 4px 12px; border-radius: var(--radius);
}
.service-vip {
  margin-top: 56px;
  display: grid; grid-template-columns: 1fr auto;
  gap: 40px; align-items: center;
  padding: 44px 48px;
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-deep) 100%);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.service-vip::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--bronze);
  box-shadow: 0 0 16px var(--bronze-glow);
}
.service-vip::after {
  content: '陵';
  position: absolute; right: -2rem; top: -3rem;
  font-family: 'Noto Serif SC', serif;
  font-size: 14rem; font-weight: 300;
  color: rgba(192,137,72,0.06);
  line-height: 1; pointer-events: none;
}
.service-vip-body { display: flex; flex-direction: column; gap: 12px; position: relative; z-index: 1; }
.service-vip-title { color: var(--on-dark); }
.service-vip-desc { color: var(--on-dark-muted); }
.btn-vip {
  display: inline-block; white-space: nowrap;
  font-size: 14px; font-weight: 300; letter-spacing: 0.12em;
  background: var(--bronze); color: #fff;
  padding: 14px 32px; border-radius: var(--radius);
  text-decoration: none; transition: background 0.2s;
  min-height: 44px; line-height: 1.4;
}
.btn-vip:hover { background: var(--bronze-light); }

/* ══════════════════════════════
   PROFILES — 不对称Bento
══════════════════════════════ */
.profiles-header { margin-bottom: 48px; }
.profiles-bento {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 380px 260px;
  gap: 16px;
}
.profile-card {
  position: relative; overflow: hidden;
  background: var(--bg-alt);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  display: flex; flex-direction: column; justify-content: flex-end;
  transition: border-color 0.2s, transform 0.2s;
}
.profile-card:hover { border-color: var(--border); transform: translateY(-2px); }
.profile-card-tall { grid-row: span 2; }
.profile-card-wide { grid-column: span 2; }
.profile-img-wrap { position: absolute; inset: 0; }
.profile-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.profile-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(17,8,32,0.92) 0%, rgba(17,8,32,0.10) 60%);
}
.profile-card-body {
  position: relative; z-index: 1;
  padding: 20px 24px;
  display: flex; flex-direction: column; gap: 8px;
}
.profile-name {
  font-family: 'Noto Serif SC', serif;
  font-weight: 300; color: var(--on-dark);
  letter-spacing: 0.06em;
}
.profile-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.profile-tag {
  font-size: 12px; letter-spacing: 0.04em;
  color: rgba(242,238,252,0.7);
  background: rgba(242,238,252,0.1);
  border: 1px solid rgba(242,238,252,0.15);
  padding: 3px 10px; border-radius: 2px;
}
.profiles-cta-bar {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 24px; padding: 28px 40px;
  background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
}
.profiles-cta-bar::before {
  content: '';
  position: absolute; left: 0; top: 25%; bottom: 25%;
  width: 3px;
  background: var(--bronze);
  box-shadow: 0 0 12px var(--bronze-glow);
}
.profiles-cta-text { color: var(--ink-light); padding-left: 16px; }
.profiles-cta-text strong { color: var(--bronze-light); font-weight: 400; }

/* ══════════════════════════════
   CTA SECTION
══════════════════════════════ */
.cta-section {
  background: linear-gradient(180deg, var(--purple-deep) 0%, var(--bg-deep) 100%);
  padding: 96px 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '金陵';
  font-family: 'Noto Serif SC', serif;
  font-size: clamp(8rem, 22vw, 20rem);
  font-weight: 300;
  background: linear-gradient(135deg, rgba(192,137,72,0.10) 0%, rgba(110,143,163,0.06) 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap; pointer-events: none; letter-spacing: 0.1em;
  line-height: 1;
}
.cta-section::after {
  content: '';
  position: absolute; left: 50%; transform: translateX(-50%);
  bottom: 32px; width: 80px; height: 1px;
  background: var(--bronze);
  box-shadow: 0 0 12px var(--bronze-glow);
}
.cta-inner { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.cta-title { color: var(--on-dark); margin-bottom: 16px; }
.cta-body { color: var(--on-dark-muted); margin-bottom: 40px; }
.cta-group { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.btn-cta {
  display: inline-block;
  font-size: 14px; font-weight: 300; letter-spacing: 0.12em;
  background: var(--bronze); color: #fff;
  padding: 14px 36px; border-radius: var(--radius);
  text-decoration: none; transition: background 0.2s;
  min-height: 44px; line-height: 1.4;
}
.btn-cta:hover { background: var(--bronze-light); }

/* ══════════════════════════════
   BLOG — 三等列 (B)
══════════════════════════════ */
.blog-header { margin-bottom: 48px; }
.blog-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card-v {
  background: var(--bg-deep);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}
.blog-card-v:hover { border-color: var(--border); transform: translateY(-3px); }
.blog-card-img {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-deep) 100%);
  height: 160px;
  border-bottom: 1px solid var(--border-dark);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.blog-card-img::after {
  content: '';
  position: absolute; left: 50%; bottom: 16px; transform: translateX(-50%);
  width: 32px; height: 1px;
  background: var(--bronze);
  box-shadow: 0 0 8px var(--bronze-glow);
}
.blog-card-img-inner {
  font-family: 'Noto Serif SC', serif;
  font-weight: 300; font-size: 3rem;
  letter-spacing: 0.1em;
  color: rgba(192,137,72,0.30);
}
.blog-card-body {
  padding: 24px 24px 28px;
  display: flex; flex-direction: column; gap: 12px; flex: 1;
}
.blog-card-meta { display: flex; align-items: center; gap: 12px; }
.blog-date { color: var(--ink-muted); }
.blog-card-title {
  font-family: 'Noto Serif SC', serif;
  font-size: 16px; font-weight: 300;
  letter-spacing: 0.06em; line-height: 1.65; color: var(--ink);
}
.blog-card-excerpt { color: var(--ink-muted); font-size: 13px; line-height: 1.75; }
.blog-card-link {
  font-size: 14px; letter-spacing: 0.08em;
  color: var(--bronze-light); text-decoration: none;
  border-bottom: 1px solid rgba(192,137,72,0.30);
  padding-bottom: 2px; align-self: flex-start;
  transition: color 0.2s, border-color 0.2s;
  margin-top: auto;
}
.blog-card-link:hover { color: var(--bronze); border-color: var(--bronze); }
.blog-footer-link { text-align: center; margin-top: 40px; }
.blog-all-link {
  font-size: 14px; letter-spacing: 0.1em;
  color: var(--ink-muted); text-decoration: none;
  border-bottom: 1px solid var(--border); padding-bottom: 2px;
  transition: color 0.2s;
}
.blog-all-link:hover { color: var(--ink); }

/* ══════════════════════════════
   FAQ
══════════════════════════════ */
.faq-header { margin-bottom: 48px; }
.faq-list { display: flex; flex-direction: column; gap: 0; max-width: 800px; }
.faq-item { border-bottom: 1px solid var(--border-dark); }
.faq-item:first-child { border-top: 1px solid var(--border-dark); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 0; cursor: pointer;
  font-family: 'Noto Serif SC', serif;
  font-size: 16px; font-weight: 300;
  letter-spacing: 0.06em; color: var(--ink);
  list-style: none; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon {
  width: 22px; height: 22px; flex-shrink: 0;
  border: 1px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--bronze-light);
  transition: transform 0.3s, background 0.2s, color 0.2s;
}
details[open] .faq-icon {
  transform: rotate(45deg);
  background: var(--bronze); color: var(--bg); border-color: var(--bronze);
  box-shadow: 0 0 12px var(--bronze-glow);
}
details[open] summary { color: var(--bronze-light); }
.faq-answer { padding: 0 0 24px; color: var(--ink-light); max-width: 66ch; }

/* ══════════════════════════════
   FOOTER D — 居中极简
══════════════════════════════ */
.footer {
  background: var(--bg-dark);
  padding: 72px 0 40px;
  border-top: 1px solid var(--border);
  text-align: center;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 80px; height: 1px;
  background: var(--bronze);
  box-shadow: 0 0 12px var(--bronze-glow);
}
.footer-center { display: flex; flex-direction: column; align-items: center; gap: 32px; }
.footer-logo {
  font-family: 'Noto Serif SC', serif;
  font-size: 22px; font-weight: 300; letter-spacing: 0.08em;
  color: var(--on-dark); text-decoration: none;
}
.footer-logo span { color: var(--bronze-light); }
.footer-desc { color: var(--on-dark-muted); max-width: 38ch; }
.footer-nav-row {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border-dark);
  width: 100%;
}
.footer-nav-row a {
  font-size: 14px; font-weight: 300; letter-spacing: 0.04em;
  color: var(--on-dark-muted); text-decoration: none;
  transition: color 0.2s;
}
.footer-nav-row a:hover { color: var(--on-dark); }
.footer-divider { height: 1px; background: var(--border-dark); width: 100%; }
.footer-bottom {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  width: 100%;
}
.footer-copy { color: var(--on-dark-faint); }
.footer-legal { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }
.footer-legal a {
  font-size: 14px; color: var(--on-dark-faint); text-decoration: none;
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--on-dark-muted); }
.footer-adult {
  width: 100%; text-align: center;
  margin-top: 24px; padding-top: 24px;
  border-top: 1px solid var(--border-dark);
  color: var(--on-dark-faint);
}

/* ══════════════════════════════
   RESPONSIVE — 1024px
══════════════════════════════ */
@media (max-width: 1024px) {
  .container { padding: 0 24px; }
  .section { padding: 72px 0; }
  .hero-section { grid-template-columns: 1fr; }
  .hero-exhibit { display: none; }
  .hero-content { padding: 120px 40px 64px; }
  .hero-content::before { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .service-h-card { grid-template-columns: 64px 1fr; gap: 24px; }
  .profiles-bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 320px 320px 220px;
  }
  .profile-card-tall { grid-row: span 1; }
  .profile-card-wide { grid-column: span 2; }
  .blog-grid-3 { grid-template-columns: 1fr 1fr; }
  .trust-sidebar { grid-template-columns: 1fr; gap: 40px; }
}

/* ══════════════════════════════
   RESPONSIVE — 767px (MOBILE)
══════════════════════════════ */
@media (max-width: 767px) {
  .container { padding: 0 20px; }
  .section { padding: 56px 0; }

  /* Nav */
  #navbar { background: rgba(17, 8, 32, 0.96); backdrop-filter: blur(12px); }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-inner { padding: 0 20px; }

  /* Hero */
  .hero-exhibit { display: none; }
  .hero-section { grid-template-columns: 1fr; }
  .hero-content { padding: 100px 20px 56px; }
  .hero-title { font-size: clamp(1.875rem, 7vw, 2.5rem); }
  .hero-cta { flex-direction: column; align-items: stretch; margin-bottom: 24px; }
  .hero-cta .btn-primary, .hero-cta .btn-text { text-align: center; }
  .hero-tags { gap: 8px; margin-top: 4px; }
  .hero-tag { font-size: 12px; padding: 6px 12px; }
  .hero-content::before { display: none; }
  .hero-content::after { display: none; }
  .btn-primary, .btn-text, .btn-cta, .btn-vip { min-height: 48px; }

  /* Trust Strip D → 2×2 grid */
  .trust-sidebar { grid-template-columns: 1fr; gap: 32px; }
  .trust-nums-side { display: grid; grid-template-columns: 1fr 1fr; }
  .trust-num-item { border-right: 1px solid var(--border); padding: 16px 0; }
  .trust-num-item:nth-child(even) { border-right: none; padding-left: 16px; }
  .trust-num-big { font-size: 2rem; min-width: auto; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 40px; }

  /* Services */
  .service-h-card { grid-template-columns: 56px 1fr; gap: 16px; padding: 28px 0; }
  .service-h-num { font-size: 2.5rem; }
  .service-vip { grid-template-columns: 1fr; gap: 24px; padding: 28px 24px; }

  /* Profiles */
  .profiles-bento {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 240px);
  }
  .profile-card-tall, .profile-card-wide { grid-row: auto; grid-column: auto; }
  .profiles-cta-bar { flex-direction: column; gap: 16px; text-align: center; padding: 24px; }
  .profiles-cta-bar::before { display: none; }
  .profiles-cta-text { padding-left: 0; }
  .profiles-cta-bar .btn-primary { width: 100%; text-align: center; }

  /* Blog */
  .blog-grid-3 { grid-template-columns: 1fr; }

  /* FAQ */
  .faq-list { max-width: 100%; }

  /* Footer */
  .footer-nav-row { gap: 16px; }
  .footer-legal { gap: 12px; }

  /* CTA */
  .cta-group { flex-direction: column; align-items: stretch; }
  .cta-group .btn-cta { text-align: center; }
}
