/* ============================================================
   墨塔战略 · 内页全站基线（第一轮）
   依据《内页全站基线规格》实现，覆盖：服务体系 / 标杆案例 /
   第一战略研修营 / 关于墨塔 / 联系我们。
   原则：白底 hero、字重≤500、绿色仅按钮/hover/激活态、
        卡片去边框改分隔线、动效位移≤16px。
   加载顺序：在 common.css 之后，保证此处 :root 与组件覆盖生效。
   ============================================================ */

/* ---------- 1. 字体（自托管变量字体；与首页同源） ---------- */
@font-face {
  font-family: "Inter Tight";
  src: url("assets/fonts/inter-tight-vf.woff2") format("woff2-variations");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("assets/fonts/inter-vf.woff2") format("woff2-variations");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* ---------- 2. 设计令牌（覆盖 common.css :root 旧值） ---------- */
:root {
  /* 颜色 · 对齐首页 V11 */
  --paper: #FFFFFF;
  --paper-2: #F5F6F4;
  --ink: #111312;
  --ink-2: #5C625E;
  --ink-3: #9BA19D;
  --line: #E3E5E3;
  --brand: #12463A;
  --brand-hover: #0C382E;
  --brand-soft: #EAF0EC;
  --green-soft: #EAF0EC;

  /* 数字字体 */
  --f-latin: "Inter Tight", "Inter", "Helvetica Neue", Arial;
  --f-cn: "PingFang SC", "HarmonyOS Sans SC", "Source Han Sans SC",
    "Noto Sans SC", "Microsoft YaHei", sans-serif;
  --font-display: var(--f-latin), var(--f-cn);
  --font-sans: "Inter", var(--f-cn);
  --font-mono: "Inter Tight", var(--f-cn);
  --font: var(--font-sans);

  /* 类型尺度 */
  --fs-display: clamp(31px, 5.1vw, 58px);
  --fs-h2: clamp(23px, 3.3vw, 37px);
  --fs-h3: clamp(17px, 1.5vw, 21px);
  --fs-lead: clamp(14.5px, 1.25vw, 17px);
  --fs-body: 15px;
  --fs-eyebrow: 11.5px;
  --fs-micro: 12.5px;
  --fs-num: clamp(36px, 5vw, 64px);

  /* 节奏 */
  --sp-section: clamp(76px, 10vw, 152px);
  --sp-section-md: clamp(56px, 7vw, 96px);
  --sp-section-lg: clamp(96px, 12vw, 180px);
  --gutter: clamp(20px, 5vw, 56px);
  --maxw: 1160px;
  --wrap: 1160px;

  /* 动效 */
  --e-out: cubic-bezier(0.16, 1, 0.3, 1);
  --e-std: cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast: 200ms;
  --t-mid: 400ms;
  --t-slow: 700ms;
  /* motai-motion 唯一变量组 */
  --motion-dur: 700ms;
  --motion-dur-l: 900ms;
  --motion-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --motion-shift: 14px;
  --motion-stagger: 80ms;

  /* 旧 token 映射（common.css 组件仍在引用） */
  --white: #FFFFFF;
  --body: #5C625E;
  --muted: #5C625E;
  --faint: #9BA19D;
  --soft-bg: #F5F6F4;
  --bg-cool: #F5F6F4;
  --bg-cool-2: #ECF0EE;
  --brand-600: #12463A;
  --brand-700: #12463A;
  --brand-800: #0C382E;
  --brand-2: #12463A;
  --brand-deep: #0C382E;
  --brand-tint: #EAF0EC;
  --brand-line: rgba(18, 70, 58, 0.16);
  --accent: #9BA19D;
  --accent-soft: #F5F6F4;
  --ease: var(--e-out);
  --dur: 400ms;
}

/* ---------- 3. 基础规范化 ---------- */
body {
  color: var(--ink-2);
  background: var(--paper);
  font-family: var(--font);
  font-size: var(--fs-body);
  line-height: 1.9;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5 {
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.005em;
}
a { color: inherit; }
img { display: block; max-width: 100%; }

/* 旧组件用的 .section-title 兜底（37px 400）；新结构用 .sec-h2 */
.section-title {
  font-size: var(--fs-h2) !important;
  font-weight: 400 !important;
  line-height: 1.28 !important;
  letter-spacing: -0.005em !important;
  color: var(--ink) !important;
  font-family: var(--font-display) !important;
}
.section-desc {
  color: var(--ink-2) !important;
  font-size: var(--fs-lead) !important;
  line-height: 1.95 !important;
  font-weight: 400 !important;
  max-width: 46em !important;
}

/* 区块节奏：覆盖 common.css 的 112-168 / 148-216 */
.section { padding: var(--sp-section) 0; }
.section--lg { padding: var(--sp-section-lg) 0; }
.section--md { padding: var(--sp-section-md) 0; }
.section--soft { background: var(--paper-2); }
.section--green-soft { background: var(--green-soft); }
.section--paper { background: var(--paper); }

/* 关闭旧 .section--dark 的绿底（深绿配额在各页单独保留 1 处） */
.section--dark { background: transparent; color: inherit; }
.section--dark .section-title,
.section--dark h2,
.section--dark h3 { color: inherit; }
.section--dark .section-desc { color: inherit; }

/* ---------- 4. 内页 Hero（白底排版式） ---------- */
.page-hero {
  position: relative;
  min-height: 46vh;
  padding: calc(var(--nav-h) + clamp(80px, 12vw, 160px)) 0
           clamp(56px, 8vw, 96px);
  background: var(--paper);
  color: var(--ink);
  overflow: hidden;
  display: flex;
  align-items: flex-start;
}
.page-hero::after { display: none; }   /* 取消 common.css 的右下圆环 */
.page-hero .wrap { position: relative; z-index: 1; }

/* 取消内页 hero 的居中（common.css 给了 align-items:center） */
.page-hero { align-items: flex-start; }

.page-eyebrow {
  display: block;
  color: var(--ink-3);
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  letter-spacing: 0.26em;
  line-height: 1;
  opacity: 0;
  animation: page-eyebrow-in 600ms var(--e-out) 380ms forwards;
}
.page-title {
  margin: 26px 0 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(28px, 4.4vw, 48px);  /* 内页≤首页 58px */
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.005em;
  max-width: 22em;
}
.page-rule {
  height: 1px;
  width: 33%;
  max-width: 360px;
  background: var(--line);
  margin-top: clamp(36px, 5vw, 60px);
  transform: scaleX(0);
  transform-origin: left;
  animation: page-rule-in 900ms var(--e-out) 520ms forwards;
}
.page-lead {
  max-width: 46em;
  margin: 26px 0 0;
  color: var(--ink-2);
  font-size: var(--fs-lead);
  font-weight: 400;
  line-height: 1.95;
  opacity: 0;
  transform: translateY(8px);
  animation: page-lead-in 700ms var(--e-out) 640ms forwards;
}

/* 覆盖 common.css .page-hero h1 的 96px / 800 */
.page-hero h1,
.page-hero .hero-title {
  margin: 26px 0 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(28px, 4.4vw, 48px);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.005em;
  max-width: 22em;
}

/* Hero 标题遮罩上推：覆盖 common.css 的 760/820ms + 110ms 步长 */
.page-hero .hero-title .hero-line {
  transition: clip-path 900ms var(--e-out);
}
.page-hero .hero-title .hero-line > span {
  transition: transform 900ms var(--e-out);
}
.page-hero .hero-title .hero-line:nth-child(2),
.page-hero .hero-title .hero-line:nth-child(2) > span { transition-delay: 80ms; }
.page-hero .hero-title .hero-line:nth-child(3),
.page-hero .hero-title .hero-line:nth-child(3) > span { transition-delay: 160ms; }

@keyframes page-eyebrow-in { to { opacity: 1; } }
@keyframes page-rule-in { to { transform: scaleX(1); } }
@keyframes page-lead-in { to { opacity: 1; transform: none; } }

/* ---------- 6. 区块统一模板（170px 标签 + 内容） ---------- */
.sec-head {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: clamp(20px, 4vw, 56px);
  align-items: start;
  margin-bottom: clamp(56px, 7vw, 104px);
}
.sec-head--center { display: block; max-width: 760px; margin: 0 auto clamp(56px, 7vw, 104px); }
.sec-head--center .sec-h2 { text-align: center; }
.sec-head--center .sec-lead { text-align: center; margin-inline: auto; }
.sec-label {
  color: var(--ink-3);
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  letter-spacing: 0.26em;
  line-height: 1;
  padding-top: 6px;
}
.sec-h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 400;
  line-height: 1.28;
  letter-spacing: -0.005em;
}
.sec-lead {
  max-width: 46em;
  margin: 26px 0 0;
  color: var(--ink-2);
  font-size: var(--fs-lead);
  font-weight: 400;
  line-height: 1.95;
}
@media (max-width: 820px) {
  .sec-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 40px; }
  .sec-label { padding-top: 0; }
}

/* ---------- 7. 分隔线行（替代所有边框卡片） ---------- */
.row {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: clamp(20px, 4vw, 56px);
  align-items: start;
  padding: clamp(26px, 3.4vw, 42px) 0;
  border-top: 1px solid var(--line);
}
.row:last-child { border-bottom: 1px solid var(--line); }
.row-title {
  color: var(--ink);
  font-size: var(--fs-h3);
  font-weight: 500;
  line-height: 1.5;
}
.row-desc {
  margin: 10px 0 0;
  color: var(--ink-2);
  font-size: 14px;
  line-height: 2;
}
.row-list {
  margin: 12px 0 0;
  padding: 0;
}
.row-list li {
  color: var(--ink-2);
  font-size: 14px;
  line-height: 2;
  list-style: none;
}
.row-sub {
  margin: 18px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.row-sub h4 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
}
@media (max-width: 820px) {
  .row { grid-template-columns: 1fr; gap: 14px; padding: 26px 0; }
}

/* ---------- 8. 按钮 ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 0;
  padding: 15px 26px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  background: transparent;
  color: inherit;
  transition: background var(--t-fast) var(--e-std),
    color var(--t-fast) var(--e-std),
    border-color var(--t-fast) var(--e-std);
}
.btn::after {
  content: "→";
  transition: transform 320ms var(--e-out);
}
.btn:hover::after { transform: translateX(5px); }

.btn-primary {
  color: #FFFFFF;
  background: var(--brand);
  border-color: var(--brand);
}
.btn-primary:hover {
  color: #FFFFFF;
  background: var(--brand-hover);
  border-color: var(--brand-hover);
  box-shadow: none;
  transform: none;
}

.btn-outline {
  color: var(--ink);
  background: transparent;
  border-color: var(--line);
}
.btn-outline:hover { color: var(--ink); border-color: var(--ink); }

.btn-light {
  color: var(--brand);
  background: #FFFFFF;
  border-color: #FFFFFF;
}
.btn-light:hover { background: var(--brand-soft); border-color: var(--brand-soft); }

/* ---------- 9. CTA 区块（占用该页深绿名额） ---------- */
.site-cta {
  background: var(--brand);
  color: #FFFFFF;
}
.site-cta .wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  padding: clamp(64px, 8vw, 112px) 0;
}
.site-cta__eyebrow {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  letter-spacing: 0.26em;
  line-height: 1;
  margin-bottom: 18px;
}
.site-cta__title {
  margin: 0;
  color: #FFFFFF;
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 400;
  line-height: 1.28;
  letter-spacing: -0.005em;
  max-width: 22em;
}
.site-cta__note {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--fs-lead);
  line-height: 1.95;
  max-width: 36em;
}
.site-cta__btn {
  flex: none;
  color: var(--brand);
  background: #FFFFFF;
  border-color: #FFFFFF;
}
.site-cta__btn:hover { background: var(--brand-soft); border-color: var(--brand-soft); }
@media (max-width: 820px) {
  .site-cta .wrap { grid-template-columns: 1fr; }
}

/* 浅色 CTA 变体（camp-notice 之类，深绿名额已被占时） */
.site-cta--light {
  background: var(--paper);
  color: var(--ink);
  border-top: 1px solid var(--line);
}
.site-cta--light .site-cta__eyebrow { color: var(--ink-3); }
.site-cta--light .site-cta__title { color: var(--ink); }
.site-cta--light .site-cta__note { color: var(--ink-2); }
.site-cta--light .site-cta__btn {
  color: #FFFFFF;
  background: var(--brand);
  border-color: var(--brand);
}
.site-cta--light .site-cta__btn:hover { background: var(--brand-hover); border-color: var(--brand-hover); }

/* ---------- 10. 统一页脚（白底方案） ---------- */
.site-ft {
  background: var(--paper);
  color: var(--ink-2);
  border-top: 1px solid var(--line);
  padding: clamp(50px, 6vw, 80px) 0 46px;
}
.ft-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}
.ft-brand {
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
}
.ft-desc {
  margin: 18px 0 0;
  max-width: 22em;
  color: var(--ink-3);
  font-size: var(--fs-micro);
  line-height: 1.9;
}
.ft-label {
  display: block;
  color: var(--ink-3);
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  letter-spacing: 0.26em;
  line-height: 1;
  margin-bottom: 18px;
}
.ft-nav {
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-size: 13.5px;
  color: var(--ink-2);
  margin: 0;
  padding: 0;
  list-style: none;
}
.ft-nav a {
  text-decoration: none;
  color: inherit;
  transition: color var(--t-fast) var(--e-std);
}
.ft-nav a:hover { color: var(--ink); }
.ft-addr {
  margin: 0;
  color: var(--ink-2);
  font-size: 13.5px;
  line-height: 1.9;
}
.ft-btm {
  margin-top: clamp(44px, 5vw, 68px);
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 12.5px;
  color: var(--ink-3);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: space-between;
}
.ft-records { display: inline-flex; flex-wrap: wrap; gap: 8px 18px; }
@media (max-width: 820px) {
  .ft-grid { grid-template-columns: 1fr; gap: 34px; }
  .ft-btm { flex-direction: column; align-items: flex-start; }
}

/* 隐藏旧 .footer（若残留） */
.footer, footer.footer { display: none !important; }

/* ---------- 11. 入场动效（A 标准揭示） ---------- */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 700ms var(--e-out), transform 700ms var(--e-out);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.visible { opacity: 1; transform: none; }

/* 区块首屏元素错位：1/2/3/4 序号 */
.reveal.delay-1 { transition-delay: 80ms; }
.reveal.delay-2 { transition-delay: 160ms; }
.reveal.delay-3 { transition-delay: 240ms; }
.reveal.delay-4 { transition-delay: 320ms; }

/* ---------- 12. 降级：减弱动态效果 ---------- */
@media (prefers-reduced-motion: reduce) {
  .page-eyebrow, .page-rule, .page-lead {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .page-rule { transform: scaleX(1) !important; }
  .page-hero .hero-title .hero-line {
    clip-path: inset(0) !important;
    transition: none !important;
  }
  .page-hero .hero-title .hero-line > span {
    transform: none !important;
    transition: none !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ============================================================
   13. 页面级组件重塑
   ============================================================ */

/* ---------- 13.2 标杆案例 ---------- */
.case-index-hero,
.case-index-hero--coop,
.case-index-hero--coop .case-index-hero__bg { background: var(--paper); }

/* 轮播：取消 3px 绿顶 / 圆角；左右按钮改文字链 */
.case-carousel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(140px, 0.2fr) minmax(0, 1fr) minmax(140px, 0.2fr);
  gap: clamp(20px, 3vw, 48px);
  align-items: center;
  min-height: 420px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  outline: none;
}
.case-carousel__side {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  padding: 18px 12px;
  border: 0;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  color: var(--ink-2);
  font-family: var(--font);
  transition: color 240ms var(--e-std), transform 240ms var(--e-std);
}
.case-carousel__side--next { align-items: flex-start; text-align: left; }
.case-carousel__side--prev { align-items: flex-end; text-align: right; }
.case-carousel__side:hover,
.case-carousel__side:focus-visible { transform: translateX(4px); color: var(--ink); }
.case-carousel__side--prev:hover,
.case-carousel__side--prev:focus-visible { transform: translateX(-4px); }
.case-carousel__side-arrow { display: none; }   /* 取消圆按钮的箭头 */
.case-carousel__side-label {
  color: var(--ink-3);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.26em;
}
.case-carousel__side-brand {
  color: inherit;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.005em;
}
.case-carousel__side img { display: none; }    /* 取消缩略图 */

.case-carousel__stage {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: center;
  gap: clamp(28px, 3vw, 48px);
  padding: clamp(24px, 2.6vw, 40px);
  text-decoration: none;
  background: var(--paper-2);
  border-radius: 0;
  transition: opacity 200ms var(--e-std);
}
.case-carousel__media img {
  display: block;
  width: 100%;
  max-height: 300px;
  object-fit: contain;
  object-position: center;
  filter: grayscale(1) contrast(0.98) brightness(0.97);
}
.case-carousel__caption h3 {
  margin: 0 0 14px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.005em;
}
.case-carousel__caption p {
  margin: 0 0 24px;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.75;
}
.case-carousel__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 500;
  transition: color 240ms var(--e-std);
}
.case-carousel__stage:hover .case-carousel__more { color: var(--ink); }

@media (max-width: 1024px) {
  .case-carousel { grid-template-columns: 110px 1fr 110px; }
}
@media (max-width: 768px) {
  .case-carousel { grid-template-columns: 1fr; min-height: 0; }
  .case-carousel__side { display: none; }
  .case-carousel__stage { grid-template-columns: 1fr; min-height: 0; padding: 22px; }
}

/* 服务品牌 logo 网格：去边框、灰阶统一、单一光学高度 */
.partner-section { background: var(--green-soft); }
.partner-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border: 0;
  background: transparent;   /* 浅绿底只由 section 承担，避免重复计块 */
}
.partner-grid figure {
  display: grid;
  min-height: 112px;
  margin: 0;
  padding: 22px 18px;
  border: 0;
  place-items: center;
  background: transparent;
}
.partner-grid img {
  width: auto;
  max-width: 90%;
  max-height: 48px;
  object-fit: contain;
  filter: grayscale(1) contrast(0.96) brightness(0.98);
  opacity: 0.92;
  transition: filter 280ms var(--e-std), opacity 280ms var(--e-std);
}
.partner-grid figure:hover img { filter: grayscale(1) brightness(0.9); opacity: 1; }
@media (max-width: 1024px) { .partner-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 768px)  { .partner-grid { grid-template-columns: repeat(3, 1fr); } .partner-grid figure { min-height: 96px; padding: 14px; } }

/* ---------- 13.3 第一战略研修营 ---------- */
.camp-hero,
.camp-hero .camp-hero-inner {
  background: var(--paper);
  color: var(--ink);
}
.camp-hero::before,
.camp-hero::after { display: none; }  /* 取消深绿 + "1" logo + 蒙版 */
.camp-hero { min-height: 46vh; padding: calc(var(--nav-h) + clamp(80px, 12vw, 160px)) 0 clamp(56px, 8vw, 96px); }
.camp-hero h1,
.camp-hero .hero-title {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(28px, 4.4vw, 48px);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.005em;
  max-width: 22em;
}

/* 课程整体架构：3 行分隔线 */
.camp-phase-track { display: flex; flex-direction: column; }
.camp-phase {
  position: relative;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: clamp(20px, 4vw, 56px);
  align-items: start;
  padding: clamp(32px, 4vw, 56px) 0;
  border-top: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  min-height: 0;
}
.camp-phase:last-child { border-bottom: 1px solid var(--line); }
.camp-phase--primary {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
  transform: none;
}
.camp-phase > span {
  position: static;
  display: block;
  margin: 0 0 8px;
  color: var(--ink-3);
  font-family: var(--font-mono);
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  letter-spacing: 0.26em;
  line-height: 1;
}
.camp-phase strong {
  display: block;
  margin: 0 0 8px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.005em;
}
.camp-phase b {
  display: block;
  margin: 0 0 12px;
  color: var(--ink-2);
  font-size: 13.5px;
  font-weight: 500;
}
.camp-phase p { margin: 0; color: var(--ink-2); font-size: 14px; line-height: 1.95; }
.camp-phase-track > i { display: none; }
@media (max-width: 820px) { .camp-phase { grid-template-columns: 1fr; gap: 14px; padding: 28px 0; } }

/* 三天两夜核心课程：header 中性（去深绿梯度） */
.camp-day-list { display: flex; flex-direction: column; gap: clamp(40px, 5vw, 64px); }
.camp-day {
  border-top: 1px solid var(--line);
  background: var(--paper);
}
.camp-day:last-child { border-bottom: 1px solid var(--line); }
.camp-day > header {
  display: grid;
  grid-template-columns: minmax(140px, 200px) 1fr;
  gap: clamp(20px, 4vw, 56px);
  align-items: start;
  min-height: 0;
  padding: clamp(28px, 3.6vw, 44px) 0 clamp(24px, 3vw, 36px);
  color: var(--ink);
  background: transparent;
}
.camp-day > header > span {
  display: block;
  color: var(--ink-3);
  font-family: var(--font-mono);
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  letter-spacing: 0.26em;
  margin: 4px 0 0;
  line-height: 1;
}
.camp-day > header > div { margin: 0; }
.camp-day > header h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(24px, 2.8vw, 30px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.005em;
}
.camp-day > header p {
  margin: 10px 0 0;
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.85;
}
.camp-day > header b {
  grid-column: 1 / -1;
  margin: clamp(20px, 2.4vw, 28px) 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  border-left: 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0;
}
.camp-modules {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}
.camp-modules section {
  padding: clamp(24px, 3vw, 36px) 0 clamp(24px, 3vw, 36px);
}
.camp-modules section + section {
  border-left: 1px solid var(--line);
  padding-left: clamp(20px, 2.6vw, 36px);
}
.camp-modules section:first-child { padding-right: clamp(20px, 2.6vw, 36px); }
.camp-modules span {
  color: var(--ink-3);
  font-family: var(--font-mono);
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  letter-spacing: 0.26em;
  line-height: 1;
}
.camp-modules h4 {
  margin: 12px 0 10px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.4;
}
.camp-modules p { margin: 0; color: var(--ink-2); font-size: 14px; line-height: 1.95; }
@media (max-width: 820px) {
  .camp-day > header { grid-template-columns: 1fr; gap: 14px; }
  .camp-modules { grid-template-columns: 1fr; }
  .camp-modules section + section { border-left: 0; border-top: 1px solid var(--line); padding: 24px 0 0; }
  .camp-modules section:first-child { padding-right: 0; }
}

/* 课程三大特色：3 行分隔线 */
.camp-feature-grid { display: flex; flex-direction: column; }
.camp-feature {
  min-height: 0;
  padding: clamp(28px, 3.6vw, 44px) 0;
  border-top: 1px solid var(--line);
  background: transparent;
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
}
.camp-feature:first-child { border-top: 0; padding-top: 0; }
.camp-feature:last-child { border-bottom: 1px solid var(--line); }
.camp-feature > span {
  display: block;
  margin: 0 0 14px;
  color: var(--ink-3);
  font-family: var(--font-mono);
  font-size: var(--fs-h2);
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.camp-feature h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: var(--fs-h3);
  font-weight: 500;
  line-height: 1.4;
}
.camp-feature p { margin: 0; color: var(--ink-2); font-size: 14.5px; line-height: 1.95; }

/* 课程四大亮点：保留深绿满铺（占该页深绿名额） */
.camp-highlights { background: var(--brand); color: #FFFFFF; }
.camp-highlights .sec-h2 { color: #FFFFFF; }
.camp-highlights .sec-lead { color: rgba(255, 255, 255, 0.72); }
.camp-highlights .sec-label { color: rgba(255, 255, 255, 0.62); }
.camp-highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}
.camp-highlight-grid article {
  min-height: 0;
  padding: clamp(28px, 3.4vw, 40px) clamp(22px, 2.6vw, 32px);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.camp-highlight-grid span {
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-mono);
  font-size: var(--fs-h2);
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1;
}
.camp-highlight-grid h3 {
  margin: 18px 0 12px;
  color: #FFFFFF;
  font-size: var(--fs-h3);
  font-weight: 500;
  line-height: 1.4;
}
.camp-highlight-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.95;
}
@media (max-width: 1024px) { .camp-highlight-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 820px)  { .camp-highlight-grid { grid-template-columns: 1fr; } }

/* 诊断场：去深绿 → #F5F6F4 */
.camp-diagnosis { background: var(--paper-2); }
.camp-diagnosis-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(40px, 5vw, 84px);
  align-items: start;
  padding: clamp(40px, 5vw, 72px);
  color: var(--ink);
}
.camp-diagnosis h2 {
  margin: 0 0 16px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 400;
  line-height: 1.28;
  letter-spacing: -0.005em;
}
.camp-diagnosis p { margin: 0; color: var(--ink-2); font-size: 15px; line-height: 1.95; }
.camp-diagnosis ul { margin: 0; padding: 0; }
.camp-diagnosis li {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.camp-diagnosis li:last-child { border-bottom: 1px solid var(--line); }
.camp-diagnosis li strong { color: var(--ink); font-size: 15px; font-weight: 500; }
.camp-diagnosis li span { color: var(--ink-2); font-size: 14px; line-height: 1.85; }
@media (max-width: 820px) {
  .camp-diagnosis-grid { grid-template-columns: 1fr; padding: 24px; }
  .camp-diagnosis li { grid-template-columns: 1fr; gap: 6px; }
}

/* 核心导师：4:5 portrait + 灰阶统一 + 数字 Inter Tight 36-64px 300 */
.mentor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
}
.mentor-card {
  display: grid;
  grid-template-columns: 42% 58%;
  gap: 0;
  min-height: 0;
  overflow: hidden;
  border: 0;
  background: var(--paper);
}
.mentor-card > img {
  display: block;
  width: 100%;
  height: auto;             /* 覆盖 common.css 的 height:100%，保证 4:5 生效 */
  align-self: start;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: grayscale(1);
}
.mentor-card > div { padding: clamp(24px, 3vw, 40px) clamp(20px, 2.6vw, 32px); }
.mentor-card > div > span {
  display: block;
  color: var(--ink-3);
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  letter-spacing: 0.26em;
}
.mentor-card h3 {
  margin: 14px 0 18px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.005em;
}
.mentor-card p { margin: 0 0 22px; color: var(--ink-2); font-size: 14px; line-height: 1.95; }
.mentor-card b {
  display: inline-block;
  margin: 0 8px 0 0;
  padding: 0;
  color: var(--ink-2);
  background: transparent;
  font-size: 13px;
  font-weight: 500;
}
.mentor-stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 3vw, 36px);
  margin: 0 0 18px;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
}
.mentor-stats span { display: block; }
.mentor-stats b {
  display: block;
  margin: 0 0 4px;
  padding: 0;
  color: var(--ink);
  background: transparent;
  font-family: var(--f-latin);
  font-size: var(--fs-num);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}
.mentor-stats i {
  display: block;
  color: var(--ink-3);
  font-family: var(--font);
  font-style: normal;
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  letter-spacing: 0.26em;
  margin-top: 14px;
}
.mentor-card .mentor-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.mentor-card .mentor-tags span {
  display: inline-block;
  padding: 5px 10px;
  color: var(--ink-2);
  background: var(--paper-2);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0;
}
@media (max-width: 820px) {
  .mentor-grid { grid-template-columns: 1fr; }
  .mentor-card { grid-template-columns: 1fr; }
  .mentor-card > img { aspect-ratio: 4/5; max-height: 460px; width: 100%; align-self: start; }
}

/* 适合谁参加：4 行分隔线 */
.audience-grid { display: flex; flex-direction: column; }
.audience-grid article {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: clamp(16px, 3vw, 32px);
  align-items: start;
  padding: clamp(26px, 3.4vw, 40px) 0;
  border-top: 1px solid var(--line);
}
.audience-grid article:last-child { border-bottom: 1px solid var(--line); }
.audience-grid span {
  color: var(--ink-3);
  font-family: var(--font-mono);
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  letter-spacing: 0.26em;
  line-height: 1;
  padding-top: 6px;
}
.audience-grid h3 {
  margin: 0;
  color: var(--ink);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.5;
}
@media (max-width: 820px) {
  .audience-grid article { grid-template-columns: 1fr; gap: 10px; }
}

/* ---------- 13.4 关于墨塔 ---------- */
.about-hero { background: var(--paper); }
.about-hero-bg,
.about-hero .about-hero-bg { display: none; }   /* 取消照片背景 */

/* 「2015」数字按规范 64px / 300 / #111312 / 移出色块 */
.about-intro {
  padding: var(--sp-section) 0;
  border-top: 1px solid var(--line);
}
.about-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(40px, 6vw, 120px);
  align-items: start;
}
.about-year {
  display: flex;
  flex-direction: column;
  gap: 14px;
  aspect-ratio: auto;   /* 覆盖 common.css 的 1:1 色块 */
  padding: 0;
  border: 0;
  background: transparent;
}
.about-year strong {
  display: block;
  color: var(--ink);
  background: transparent;
  font-family: var(--f-latin);
  font-size: clamp(48px, 6.4vw, 64px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}
.about-year span {
  color: var(--ink-3);
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  letter-spacing: 0.26em;
  line-height: 1;
}
.about-intro-copy h2 {
  margin: 0 0 24px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(26px, 3.6vw, 40px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.005em;
}
.about-intro-copy p { margin: 0 0 16px; color: var(--ink-2); font-size: 15px; line-height: 1.95; }
@media (max-width: 820px) { .about-intro-grid { grid-template-columns: 1fr; gap: 32px; } }

/* 愿景/使命/价值观：浅绿底（该页唯一浅绿） */
.about-vision { background: var(--green-soft); }
.vmv-list { display: flex; flex-direction: column; gap: 0; }
.vmv-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: clamp(28px, 4vw, 64px);
  padding: clamp(32px, 4vw, 52px) 0;
  border-top: 1px solid var(--line);
}
.vmv-item:first-child { border-top: 0; padding-top: 0; }
.vmv-item:last-child { border-bottom: 1px solid var(--line); }
.vmv-title {
  margin: 4px 0 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.005em;
}
.vmv-item > p { margin: 0; color: var(--ink-2); font-size: 15px; line-height: 1.95; }
.vmv-values { display: flex; flex-direction: column; gap: 18px; }
.vmv-values p { margin: 0; color: var(--ink-2); font-size: 14.5px; line-height: 1.85; }
.vmv-values strong {
  display: block;
  margin: 0 0 4px;
  color: var(--ink);
  font-weight: 500;
}
@media (max-width: 820px) { .vmv-item { grid-template-columns: 1fr; gap: 16px; } }

/* 创始人：4:5 portrait + 灰阶统一 */
.about-founder { padding: var(--sp-section) 0; }
.about-founder-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.about-founder figure { margin: 0; }
.about-founder figure img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: grayscale(1);
}
.about-founder figcaption {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.about-founder figcaption strong {
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
}
.about-founder figcaption span {
  color: var(--ink-3);
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  letter-spacing: 0.26em;
}
.about-founder h2 {
  margin: 0 0 22px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(26px, 3.6vw, 40px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.005em;
}
.about-founder p { margin: 0 0 16px; color: var(--ink-2); font-size: 15px; line-height: 1.95; }
.about-founder ul { margin: 24px 0 0; padding: 0; }
.about-founder li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.85;
}
.about-founder li:last-child { border-bottom: 1px solid var(--line); }
.about-founder li span { color: var(--ink-3); font-size: var(--fs-eyebrow); font-weight: 500; letter-spacing: 0.26em; }
@media (max-width: 820px) {
  .about-founder-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-founder li { grid-template-columns: 1fr; gap: 4px; }
}

/* 深绿 CTA 沿用 .site-cta 组件 */

/* ---------- 13.5 联系我们 ---------- */
.contact-hero { background: var(--paper); color: var(--ink); }
.contact-hero img,
.contact-hero .contact-hero-shade { display: none; }   /* 取消黄浦江照片 + 蒙版 */
.contact-hero { min-height: 46vh; padding: calc(var(--nav-h) + clamp(80px, 12vw, 160px)) 0 clamp(56px, 8vw, 96px); }
.contact-hero h1,
.contact-hero .hero-title {
  margin: 26px 0 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(28px, 4.4vw, 48px);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.005em;
  max-width: 22em;
}
.contact-hero-copy .contact-kicker { color: var(--ink-3); font-size: var(--fs-eyebrow); font-weight: 500; letter-spacing: 0.26em; }

/* 联系卡：去外框 → 3 行分隔线 */
.contact-details { padding: var(--sp-section) 0; }
.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: clamp(32px, 4vw, 56px);
}
.contact-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: clamp(20px, 4vw, 56px);
  align-items: start;
  padding: clamp(28px, 3.4vw, 44px) 0;
  border-top: 1px solid var(--line);
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  text-decoration: none;
  color: inherit;
  transition: background 200ms var(--e-std);
}
.contact-card:last-child { border-bottom: 1px solid var(--line); }
.contact-card:hover { background: var(--paper-2); }
.contact-card small {
  color: var(--ink-3);
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  letter-spacing: 0.26em;
  line-height: 1;
  padding-top: 8px;
}
.contact-card h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(19px, 2vw, 22px);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.005em;
}
.contact-card p { margin: 10px 0 0; color: var(--ink-2); font-size: 14px; line-height: 1.85; }
.contact-card--link b { color: var(--ink-2); font-weight: 500; }
.contact-card--link:hover b { color: var(--ink); }
.contact-card .phone {
  font-family: var(--f-latin);
  font-size: 21px;
  font-weight: 400;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.005em;
}
@media (max-width: 820px) {
  .contact-card { grid-template-columns: 1fr; gap: 12px; padding: 26px 0; }
}

/* I1 联系墨塔：白底 + 苏州河/黄浦江/外白渡桥/绿点线稿 */
.contact-visit {
  position: relative;
  overflow: hidden;
  background: var(--paper);
  padding: var(--sp-section-lg) 0;
}
.contact-visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
  position: relative;
  z-index: 2;
}
.contact-visit h2 {
  margin: 18px 0 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 400;
  line-height: 1.28;
  letter-spacing: -0.005em;
  max-width: 14em;
}
.contact-visit p {
  margin: 22px 0 0;
  color: var(--ink-2);
  font-size: var(--fs-lead);
  line-height: 1.95;
  max-width: 30em;
}
.contact-visit .btn { margin-top: 28px; }
.contact-visit__geo {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  opacity: 0;
  transition: opacity 1000ms var(--e-out) 200ms;
}
.contact-visit.is-in .contact-visit__geo { opacity: 1; }
.contact-visit__geo svg {
  height: 100%;
  width: auto;
  display: block;
  margin-left: 2%;
  stroke: var(--brand);
  stroke-width: 1;
  fill: none;
  color: var(--brand);
}
.contact-visit__geo .geo-stroke {
  transition: stroke-dashoffset 1600ms var(--e-out) 400ms;
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
}
.contact-visit.is-in .contact-visit__geo .geo-stroke { stroke-dashoffset: 0; }
.contact-visit__geo .geo-dot {
  transform: scale(0);
  transform-origin: center;
  transition: transform 400ms var(--e-out) 1200ms;
  fill: var(--brand);
  stroke: none;
}
.contact-visit.is-in .contact-visit__geo .geo-dot { transform: scale(1); }
@media (max-width: 900px) {
  .contact-visit-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-visit__geo { position: static; margin-top: 24px; }
  .contact-visit__geo svg { width: 100%; height: clamp(200px, 50vw, 280px); margin-left: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .contact-visit__geo { opacity: 1 !important; transition: none !important; }
  .contact-visit__geo .geo-stroke { stroke-dashoffset: 0 !important; transition: none !important; }
  .contact-visit__geo .geo-dot { transform: scale(1) !important; transition: none !important; }
}

/* ---------- 14. 顶栏面板与杂项兜底 ---------- */
.to-top {
  color: var(--ink);
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: none;
  border-radius: 2px;
}
.to-top:hover { color: var(--paper); background: var(--brand); border-color: var(--brand); }

/* 旧 .footer 一律隐藏（页脚已替换为 .site-ft） */
.footer, footer.footer { display: none !important; }

/* 弱化残留的居中标题（兜底） */
h1, h2, h3, h4, h5 { text-align: left; }
.section-head--center,
.sec-head--center { text-align: center; }
.section-head--center h2,
.section-head--center .section-title,
.sec-head--center .sec-h2 { text-align: center; }

/* 显式去除残留 700/800 字重（来自 common.css 旧组件） */
.section-title, .sec-h2, .sec-lead, .page-lead, .page-title,
.empowerment-panel h3, .escort-row__title, .product-row__title,
.review-name, .camp-phase strong, .camp-day h3, .camp-feature h3,
.camp-highlight-grid h3, .about-intro-copy h2, .about-founder h2,
.mentor-card h3, .vmv-title, .contact-card h3, .contact-visit h2,
.about-year strong, .case-carousel__caption h3 { font-weight: 400 !important; }
.review-name, .empowerment-panel h3, .escort-row__title, .product-row__title,
.camp-phase strong, .camp-day h3, .mentor-card h3 { font-weight: 500 !important; }

/* 显式去除常见绿色：序号 / 标签 / 数字 / 正文 */
.camp-phase > span, .camp-feature > span, .audience-grid span,
.contact-card small, .service-index__label, .vmv-item .sec-label,
.sec-label, .about-year span, .page-eyebrow, .mentor-stats i,
.camp-modules span, .camp-day > header > span,
.camp-highlight-grid span { color: var(--ink-3) !important; }

.camp-modules h4, .audience-grid h3, .mentor-stats b,
.review-text, .review-name, .empowerment-panel h3,
.escort-row__title, .product-row__title,
.camp-phase strong, .camp-day h3, .mentor-card h3,
.about-year strong, .vmv-title, .contact-card h3,
.contact-visit h2, .about-founder h2, .about-intro-copy h2,
.about-founder figcaption strong, .case-carousel__caption h3,
.site-cta__title, .sec-h2, .page-title,
.product-row__case, .product-row__tag,
.camp-feature h3, .camp-highlight-grid h3 { color: var(--ink) !important; }
.product-row__case:hover { color: var(--ink) !important; }
.escort-row__body, .escort-row__body p, .escort-row__list li,
.product-row__desc, .camp-phase p, .camp-modules p,
.camp-day > header p, .camp-day > header b, .camp-feature p,
.camp-highlight-grid p, .camp-diagnosis p, .camp-diagnosis li span,
.about-intro-copy p, .about-founder p, .about-founder li,
.contact-card p, .contact-visit p, .mentor-card p,
.review-title, .review-brand, .review-text, .page-lead,
.sec-lead, .product-row__case, .vmv-item > p, .vmv-values p,
.growth-copy p, .growth-brands, .case-carousel__caption p,
.case-carousel__more, .case-carousel__side-label,
.escort-row__sub h4, .case-carousel__side,
.ft-desc, .ft-addr, .ft-btm, .ft-nav { color: var(--ink-2) !important; }

.camp-diagnosis h2, .camp-diagnosis li strong,
.about-year strong, .case-carousel__side-brand,
.site-cta__title, .page-title, .sec-h2, .page-lead,
.about-intro-copy h2, .about-founder h2, .about-founder figcaption strong { color: var(--ink) !important; }
.mentor-stats b { color: var(--ink) !important; }
.mentor-stats i, .about-year span { color: var(--ink-3) !important; }
.growth-brands, .case-carousel__side-label, .ft-desc,
.contact-card small, .audience-grid span, .camp-modules span,
.camp-phase > span, .camp-feature > span, .camp-highlight-grid span,
.camp-day > header > span, .sec-label, .page-eyebrow,
.about-year span, .vmv-item .sec-label { color: var(--ink-3) !important; }
.ft-btm { color: var(--ink-3) !important; }
.site-cta__eyebrow { color: rgba(255, 255, 255, 0.62) !important; }
.site-cta__note { color: rgba(255, 255, 255, 0.72) !important; }
.camp-highlights .sec-lead { color: rgba(255, 255, 255, 0.72) !important; }
.camp-highlights .sec-label { color: rgba(255, 255, 255, 0.62) !important; }
.camp-highlights .sec-h2, .camp-highlights .site-cta__title,
.camp-highlight-grid h3 { color: #FFFFFF !important; }
.camp-highlight-grid p, .camp-highlight-grid span { color: rgba(255, 255, 255, 0.72) !important; }

/* 圆角 / 阴影全站禁用（除按钮 2px） */
img, figure, .escort-row, .product-row, .review-item, .contact-card,
.case-carousel, .case-carousel__stage, .mentor-card, .camp-day,
.audience-grid article, .partner-grid figure, .about-founder figure,
.about-founder img, .mentor-card > img, .growth-media, .growth-tree,
.about-vision, .about-intro, .camp-feature, .escort-row,
.empowerment-panel, .service-index__row, .row,
.site-cta, .site-cta--light, .site-ft {
  border-radius: 0 !important;
  box-shadow: none !important;
}

/* 全部隐藏 .footer，避免双页脚 */
footer.footer, .footer { display: none !important; }
