/* 曹斐个人网站 · 视觉系统
   设计基调：美拉德深色版 —— 深可可底 + 米色文字 + 焦糖点缀
   排版规律：衬线中文标题（细字重 + 大字距）+ 无衬线正文（小字号 + 大行距）
   图片规律：无边框 / 无圆角 / 无阴影，靠渐变遮罩消融进背景
   分隔规律：1px 发丝线网格（gap:1px），不用卡片描边和投影 */

:root {
  color-scheme: dark;

  /* ---- 字体（全部走系统字体，不依赖 Google Fonts） ---- */
  --font-sans: "Inter", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", -apple-system, sans-serif;
  --font-serif: "Noto Serif SC", "Source Han Serif SC", "Songti SC", "STSong", "SimSun", serif;
  --font-display: "Playfair Display", "Georgia", "Times New Roman", serif;

  /* ---- 美拉德 · 深色版 ---- */
  --bg: #1c1109;                       /* 页面底 · 深可可 */
  --bg-elevated: #221509;              /* 提亮区块 · 烘焙棕 */
  --surface-hover: rgba(244, 234, 220, .035);

  --cream: #f0e5d6;                    /* 正文 · 米色 */
  --cream-strong: #faf5ec;             /* 标题 · 奶白 */
  --cream-dim: rgba(240, 229, 214, .66);   /* 次级 */
  --cream-muted: rgba(240, 229, 214, .40); /* 说明性小字 */
  --line: rgba(240, 229, 214, .09);    /* 发丝线 */

  --gold: #c9a05c;                     /* 焦糖金 */
  --gold-bright: #ddb878;
  --gold-deep: #96682f;
  --ink-on-gold: #1c1109;

  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
button, a { font: inherit; }
button { border: 0; cursor: pointer; background: transparent; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-shell {
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 55% at 78% 4%, rgba(201, 160, 92, .07), transparent 62%),
    linear-gradient(180deg, #1c1109, #221509 42%, #1c1109);
}

.scroll-meter {
  position: fixed; z-index: 90; top: 0; left: 0;
  width: 100%; height: 2px;
  transform-origin: left;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright));
}

/* ---------- Header ---------- */
.site-header {
  position: fixed; z-index: 80; top: 14px; left: 50%;
  display: grid;
  width: min(calc(100% - 32px), var(--max));
  min-height: 62px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 8px 10px 8px 26px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(28, 17, 9, .72);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .28);
  -webkit-backdrop-filter: saturate(170%) blur(22px);
  backdrop-filter: saturate(170%) blur(22px);
  transform: translate(-50%);
}
a.brand { text-decoration: none; }
.brand { display: grid; gap: 3px; min-width: 132px; padding: 0; color: var(--cream-strong); text-align: left; }
.brand strong { font-family: var(--font-serif); font-size: 19px; font-weight: 400; letter-spacing: .16em; }
.brand span { color: var(--cream-muted); font-size: 10px; letter-spacing: .16em; }

.desktop-nav { display: flex; justify-content: center; align-items: center; gap: 34px; }
.desktop-nav button, .desktop-nav a, .header-cta, .menu-button, .mobile-nav button, .mobile-nav a {
  min-height: 42px; border-radius: 999px;
  transition: color .4s ease, background .4s ease, transform .3s ease, box-shadow .3s ease;
}
.desktop-nav button, .desktop-nav a {
  display: inline-flex; align-items: center;
  padding: 0; background: transparent; color: var(--cream-muted);
  font-size: 13px; font-weight: 400; letter-spacing: .06em;
  text-decoration: none;
}
.desktop-nav button:hover, .desktop-nav a:hover { color: var(--cream-strong); }

.header-cta, .primary-action, .mobile-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--gold); color: var(--ink-on-gold);
  box-shadow: 0 4px 22px rgba(201, 160, 92, .26);
}
.header-cta { padding: 0 22px; font-size: 13px; font-weight: 500; letter-spacing: .1em; }
.header-cta:hover, .primary-action:hover, .mobile-primary:hover { background: var(--gold-bright); transform: translateY(-2px); }

.menu-button { display: none; place-items: center; width: 44px; color: var(--cream); }
.mobile-nav {
  position: fixed; z-index: 78; top: 88px; left: 16px; right: 16px;
  display: grid; gap: 6px; padding: 18px;
  border: 1px solid var(--line); border-radius: 20px;
  background: rgba(28, 17, 9, .95);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .45);
  -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
}
.mobile-nav button, .mobile-nav a {
  display: flex; align-items: center; justify-content: flex-start;
  padding: 0 18px; color: var(--cream-dim); font-size: 14px; letter-spacing: .06em;
  text-decoration: none;
}
.mobile-nav button:hover, .mobile-nav a:hover { background: var(--surface-hover); color: var(--cream-strong); }
.mobile-nav[hidden] { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
  align-items: center;
  gap: 0;
  width: min(calc(100% - 64px), var(--max));
  margin: 0 auto;
  padding: 172px 0 92px;
}
.hero-copy { position: relative; z-index: 2; max-width: 640px; padding-right: 56px; }

/* 小标签：11px + .3em 字距，是全局统一的节奏锚点 */
.eyebrow {
  margin: 0 0 34px;
  color: var(--gold);
  font-size: 11px; font-weight: 500; letter-spacing: .3em;
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 22px; color: var(--cream-strong);
  font-family: var(--font-serif);
  font-size: clamp(54px, 6.6vw, 92px); font-weight: 400; line-height: 1.06; letter-spacing: .14em;
}
.hero-subtitle {
  margin-bottom: 34px; color: var(--cream-dim);
  font-family: var(--font-serif);
  font-size: clamp(17px, 1.7vw, 24px); font-weight: 400; line-height: 1.7; letter-spacing: .2em;
}
.hero-text {
  max-width: 560px; margin-bottom: 40px; color: var(--cream-dim);
  font-size: 15px; font-weight: 300; line-height: 2; letter-spacing: .045em;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }
.primary-action, .secondary-action {
  min-height: 52px; padding: 0 30px; border-radius: 999px;
  font-size: 14px; font-weight: 500; letter-spacing: .1em;
}
.secondary-action {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 1px solid rgba(240, 229, 214, .18); background: transparent; color: var(--cream);
  transition: border-color .3s ease, color .3s ease, transform .3s ease;
}
.secondary-action:hover { border-color: rgba(201, 160, 92, .5); color: var(--cream-strong); transform: translateY(-2px); }

.hero-notes { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-notes span {
  display: inline-flex; align-items: center; min-height: 32px; padding: 0 14px;
  border: 1px solid rgba(201, 160, 92, .22); border-radius: 999px;
  color: var(--cream-muted); font-size: 12px; letter-spacing: .08em;
}

/* 人像：无框无角，底部用遮罩消融进页面背景 */
.hero-visual { position: relative; align-self: stretch; min-height: 560px; }
.portrait-frame { position: absolute; inset: 0; }
.portrait-frame:before {
  position: absolute; left: 50%; top: 34%;
  width: 80%; aspect-ratio: 1; transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 160, 92, .18), transparent 66%);
  content: "";
}
/* 半身版：图片自带底部 alpha 渐隐，不再叠 CSS mask（否则腹部会提前淡出）。
   底部对齐，让渐隐正好落在容器下沿，人像自然消融进页面。 */
.portrait-frame img {
  position: relative; z-index: 1;
  display: block; width: 100%; height: 100%; max-height: 780px;
  object-fit: contain; object-position: center bottom;
}

.hero-index {
  position: absolute; left: -46px; top: 232px;
  display: grid; gap: 22px;
  color: rgba(240, 229, 214, .22); font-size: 11px; letter-spacing: .3em;
}
.hero-index span:first-child { color: var(--gold); }

/* ---------- Trust strip（发丝线网格） ---------- */
.trust-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  width: min(calc(100% - 64px), var(--max));
  margin: 0 auto 96px;
  border-block: 1px solid var(--line);
  background: var(--line);
}
.trust-item {
  display: grid; grid-template-columns: auto 1fr; gap: 4px 16px; align-content: center;
  min-height: 132px; padding: 30px 32px;
  background: var(--bg);
  transition: background .5s ease;
}
.trust-item:hover { background: var(--surface-hover); }
.trust-item svg { grid-row: span 2; color: var(--gold); }
.trust-item strong { color: var(--cream-strong); font-family: var(--font-serif); font-size: 21px; font-weight: 400; letter-spacing: .08em; }
.trust-item span { color: var(--cream-muted); font-size: 13px; font-weight: 300; line-height: 1.7; letter-spacing: .04em; }
/* 执业编号为长串数字，允许折行避免溢出 */
.trust-item:last-child span { font-size: 11px; word-break: break-all; }

/* ---------- 通用区块 ---------- */
.section { width: min(calc(100% - 64px), var(--max)); margin: 0 auto; padding: 120px 0; }
.section-heading { max-width: 720px; margin-bottom: 64px; }
.section-heading h2, .split-heading h2 {
  margin-bottom: 18px; color: var(--cream-strong);
  font-family: var(--font-serif);
  font-size: clamp(30px, 3.6vw, 46px); font-weight: 400; line-height: 1.3; letter-spacing: .1em;
}
.section-heading p, .split-heading p {
  color: var(--cream-muted); font-size: 14px; font-weight: 300; line-height: 1.95; letter-spacing: .04em;
}
.split-heading {
  display: grid; grid-template-columns: minmax(0, .78fr) minmax(280px, .42fr);
  align-items: end; gap: 44px; margin-bottom: 64px;
}

/* ---------- 执业理念 ---------- */
.philosophy-grid { display: grid; grid-template-columns: minmax(0, .74fr) minmax(0, .58fr); gap: 56px; align-items: start; }
.principles p {
  max-width: 620px; margin-bottom: 32px; color: var(--cream);
  font-family: var(--font-serif);
  font-size: clamp(19px, 2.1vw, 27px); font-weight: 300; line-height: 1.95; letter-spacing: .05em;
}
.principles ul { display: grid; gap: 16px; margin: 0; padding: 0; list-style: none; }
.principles li {
  display: flex; gap: 12px; align-items: flex-start;
  color: var(--cream-muted); font-size: 14px; font-weight: 300; line-height: 1.9; letter-spacing: .04em;
}
.principles ul svg { flex: 0 0 auto; margin-top: 6px; color: var(--gold); }

/* 生命周期插图：无框无角，底部消融，金句作为图注落在下方 */
.quote-panel { margin: 0; }
.quote-panel img {
  width: 100%; height: auto;
  -webkit-mask-image: linear-gradient(to bottom, #000 0 76%, rgba(0, 0, 0, .5) 92%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0 76%, rgba(0, 0, 0, .5) 92%, transparent 100%);
}
.quote-panel blockquote {
  margin: 30px 0 0; padding-left: 22px;
  border-left: 1px solid rgba(201, 160, 92, .45);
  color: var(--cream-dim);
  font-family: var(--font-serif);
  font-size: clamp(17px, 1.75vw, 23px); font-weight: 300; line-height: 1.95; letter-spacing: .07em;
}

/* ---------- 服务卡片（发丝线网格，图片满格无框） ---------- */
.service-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--line);
}
.service-card {
  overflow: hidden;
  background: var(--bg);
  transition: background .5s cubic-bezier(.4, 0, .2, 1);
}
.service-card:hover { background: var(--surface-hover); }
/* 插图为 2.16:1 横幅流程图，按原图比例满格展示，不裁两侧文字 */
.service-card > img { width: 100%; aspect-ratio: 2.16 / 1; object-fit: cover; object-position: center; }
.service-card:hover > img { transform: none; }
.service-content { padding: 34px 32px 38px; }
.service-kicker { margin-bottom: 16px; color: var(--gold); font-size: 11px; font-weight: 500; letter-spacing: .28em; }
.service-content h3 {
  margin-bottom: 14px; color: var(--cream-strong);
  font-family: var(--font-serif); font-size: 19px; font-weight: 400; line-height: 1.5; letter-spacing: .09em;
}
.service-content p {
  min-height: 80px; margin-bottom: 22px; color: var(--cream-muted);
  font-size: 14px; font-weight: 300; line-height: 1.95; letter-spacing: .04em;
}
.service-content button {
  display: inline-flex; align-items: center; gap: 8px; padding: 0;
  color: var(--gold); font-size: 12px; font-weight: 500; letter-spacing: .12em;
  transition: gap .3s ease, color .3s ease;
}
.service-content button:hover { gap: 14px; color: var(--gold-bright); }

/* ---------- 服务流程（提亮通栏 + 发丝线网格） ---------- */
.journey { position: relative; margin: 40px 0; padding: 0; background: var(--bg-elevated); border-block: 1px solid var(--line); }
.journey:before {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(201, 160, 92, .08), transparent 68%);
  content: "";
}
.journey-inner { position: relative; z-index: 2; width: min(calc(100% - 64px), var(--max)); margin: 0 auto; padding: 120px 0; }
.inverse h2 { color: var(--cream-strong); }
.inverse p { color: var(--cream-muted); }
.journey-track { display: grid; grid-template-columns: repeat(6, minmax(150px, 1fr)); gap: 1px; background: var(--line); }
.journey-step {
  min-height: 214px; padding: 30px 24px;
  background: var(--bg-elevated);
  transition: background .5s ease;
}
.journey-step:hover { background: var(--surface-hover); }
.journey-step span {
  display: block; margin-bottom: 26px; color: var(--gold);
  font-family: var(--font-display); font-size: 15px; letter-spacing: .18em;
}
.journey-step h3 {
  margin-bottom: 12px; color: var(--cream-strong);
  font-family: var(--font-serif); font-size: 17px; font-weight: 400; line-height: 1.5; letter-spacing: .09em;
}
.journey-step p { margin: 0; color: var(--cream-muted); font-size: 13px; font-weight: 300; line-height: 1.9; letter-spacing: .04em; }

/* ---------- 常见困惑 ---------- */
.tag-cloud { display: flex; flex-wrap: wrap; gap: 12px; }
.tag-cloud button {
  min-height: 46px; padding: 0 22px;
  border: 1px solid var(--line); border-radius: 999px;
  color: var(--cream-dim); font-size: 13px; font-weight: 300; letter-spacing: .06em;
  transition: border-color .4s ease, color .4s ease, transform .3s ease;
}
.tag-cloud button:hover { border-color: rgba(201, 160, 92, .45); color: var(--cream-strong); transform: translateY(-2px); }

/* ---------- 收费（只有横向发丝线，不用外框） ---------- */
.pricing { width: 100%; max-width: none; margin-top: 30px; padding: 120px 0; background: linear-gradient(180deg, transparent, rgba(34, 21, 9, .9) 22%, rgba(34, 21, 9, .9) 78%, transparent); }
.pricing > * { width: min(calc(100% - 64px), var(--max)); margin-inline: auto; }
.pricing .section-heading { max-width: 720px; }
.pricing-list { max-width: 940px; }
.price-row {
  display: grid; grid-template-columns: minmax(180px, .46fr) minmax(0, 1fr);
  align-items: start; gap: 28px; padding: 26px 4px;
  border-top: 1px solid var(--line); text-align: left;
}
.price-row:last-child { border-bottom: 1px solid var(--line); }
.price-main { display: grid; gap: 10px; }
.price-main span { color: var(--cream-strong); font-size: 15px; font-weight: 400; line-height: 1.5; letter-spacing: .06em; }
.price-main strong {
  color: var(--gold); font-family: var(--font-sans);
  font-size: clamp(24px, 2.4vw, 30px); font-weight: 300; line-height: 1.2; letter-spacing: .04em;
}
.price-row p, .faq-item p { margin: 0; color: var(--cream-muted); font-weight: 300; line-height: 1.95; letter-spacing: .04em; }
.price-row p { max-width: 560px; font-size: 14px; padding-top: 4px; }

/* ---------- FAQ（发丝线网格） ---------- */
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); }
.faq-item { display: grid; gap: 14px; padding: 34px 32px; background: var(--bg); transition: background .5s ease; }
.faq-item:hover { background: var(--surface-hover); }
.faq-item h3 {
  margin: 0; color: var(--cream-strong);
  font-family: var(--font-serif); font-size: 16px; font-weight: 400; line-height: 1.65; letter-spacing: .07em;
}
.faq-item p { font-size: 14px; }

/* ---------- 联系 ---------- */
.contact { position: relative; overflow: hidden; margin-top: 40px; border-top: 1px solid var(--line); }
.contact:before {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 70% at 22% 40%, rgba(201, 160, 92, .1), transparent 66%);
  content: "";
}
.contact-content { position: relative; z-index: 2; width: min(calc(100% - 64px), var(--max)); margin: 0 auto; padding: 120px 0; }
.contact-content h2 {
  max-width: 720px; margin-bottom: 20px; color: var(--cream-strong);
  font-family: var(--font-serif); font-size: clamp(30px, 3.6vw, 46px); font-weight: 400; line-height: 1.3; letter-spacing: .1em;
}
.contact-content p { max-width: 560px; color: var(--cream-muted); font-size: 14px; font-weight: 300; line-height: 1.95; letter-spacing: .04em; }
.contact-methods { display: grid; grid-template-columns: repeat(2, minmax(0, 280px)); gap: 1px; margin-top: 44px; background: var(--line); }
.contact-methods a {
  display: flex; align-items: center; gap: 16px; min-height: 96px; padding: 22px 24px;
  background: var(--bg);
  transition: background .5s ease;
}
.contact-methods a:hover { background: var(--surface-hover); }
.contact-methods strong, .contact-methods span { display: block; }
.contact-methods > a > span { color: var(--cream-muted); font-size: 12px; letter-spacing: .1em; }
.contact-methods strong { margin-top: 6px; color: var(--cream-strong); font-size: 15px; font-weight: 400; letter-spacing: .08em; }
.contact-methods svg { flex: 0 0 auto; color: var(--gold); }

/* ---------- Footer ---------- */
.site-footer {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  width: min(calc(100% - 64px), var(--max)); margin: 0 auto; padding: 40px 0 48px;
  color: var(--cream-muted); font-size: 12px; letter-spacing: .06em; text-align: center;
}
.site-footer .footer-brand { display: grid; gap: 6px; }
.site-footer strong { color: var(--cream-dim); font-weight: 400; letter-spacing: .1em; }
.footer-beian { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px; }
.footer-beian a { color: inherit; text-decoration: none; transition: color .4s ease; }
.footer-beian a:hover { color: var(--gold); }

/* ---------- 动效 ---------- */
[data-reveal] { opacity: 0; transform: translateY(30px); transition: opacity .9s cubic-bezier(.4, 0, .2, 1), transform .9s cubic-bezier(.4, 0, .2, 1); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
button:focus-visible, a:focus-visible { outline: 1px solid rgba(201, 160, 92, .8); outline-offset: 5px; }

/* ---------- 响应式 ---------- */
@media (max-width: 1020px) {
  .site-header { grid-template-columns: auto 1fr auto; }
  .desktop-nav, .header-cta { display: none; }
  .menu-button { display: grid; grid-column: 3; }
  .hero { min-height: auto; grid-template-columns: 1fr; gap: 40px; padding: 150px 0 72px; }
  .hero-copy { max-width: none; padding-right: 0; }
  .hero-visual { min-height: 480px; }
  .hero-index { display: none; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); margin-bottom: 72px; }
  .split-heading, .philosophy-grid { grid-template-columns: 1fr; }
  .philosophy-grid { gap: 48px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-content p { min-height: auto; }
  .journey-track { grid-template-columns: repeat(2, 1fr); }
  .faq-grid { grid-template-columns: 1fr; }
  .contact-methods { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .site-header { top: 10px; width: calc(100% - 20px); min-height: 56px; padding: 6px 8px 6px 18px; }
  .brand strong { font-size: 17px; }
  .brand span { font-size: 9px; }
  .mobile-nav { top: 78px; left: 10px; right: 10px; }
  .hero, .section, .trust-strip, .journey-inner, .contact-content, .site-footer, .pricing > * { width: min(calc(100% - 32px), var(--max)); }
  .hero { padding-top: 128px; padding-bottom: 56px; }
  h1 { font-size: clamp(50px, 16vw, 72px); }
  .hero-subtitle { font-size: 17px; letter-spacing: .16em; }
  .hero-text { font-size: 14px; }
  .hero-actions { display: grid; }
  .primary-action, .secondary-action { width: 100%; }
  .hero-visual { min-height: 420px; }
  .trust-strip { grid-template-columns: 1fr; }
  .trust-item { min-height: auto; padding: 24px 0; }
  .section { padding: 84px 0; }
  .section-heading { margin-bottom: 44px; }
  .principles p { font-size: 19px; }
  .quote-panel blockquote { margin-top: 26px; }
  .journey-inner, .contact-content { padding: 84px 0; }
  .journey-track { grid-template-columns: 1fr; }
  .pricing { padding: 84px 0; }
  .price-row { grid-template-columns: 1fr; gap: 10px; padding: 22px 0; }
  .price-main { gap: 6px; }
  .price-row p { padding-top: 0; }
  .faq-item { padding: 28px 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *:before, *:after {
    scroll-behavior: auto !important; transition-duration: .01ms !important;
    animation-duration: .01ms !important; animation-iteration-count: 1 !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ---------- 产品对比独立页 ---------- */
.page-hero {
  width: min(calc(100% - 64px), var(--max));
  margin: 0 auto; padding: 186px 0 56px;
}
.page-hero h1 {
  margin-bottom: 26px;
  font-size: clamp(38px, 4.6vw, 62px); letter-spacing: .1em;
}
.page-hero p { max-width: 640px; color: var(--cream-dim); font-size: 15px; font-weight: 300; line-height: 2; letter-spacing: .045em; }

.compare-figure { width: min(calc(100% - 64px), var(--max)); margin: 0 auto; }
.compare-figure img {
  display: block; width: 100%; aspect-ratio: 2.16 / 1; object-fit: cover;
  -webkit-mask-image: radial-gradient(ellipse 92% 88% at center, #000 55%, transparent 98%);
  mask-image: radial-gradient(ellipse 92% 88% at center, #000 55%, transparent 98%);
}

.compare-main {
  width: min(calc(100% - 64px), var(--max));
  margin: 0 auto; padding: 40px 0 120px;
}
.compare-intro { max-width: 720px; margin-bottom: 56px; }
.compare-intro h2 {
  margin-bottom: 18px; color: var(--cream-strong);
  font-family: var(--font-serif); font-size: clamp(26px, 2.6vw, 36px);
  font-weight: 400; letter-spacing: .1em;
}
.compare-intro p { color: var(--cream-dim); font-size: 14px; line-height: 2; letter-spacing: .04em; }

.compare-table-wrap { overflow-x: auto; border: 1px solid var(--line); }
.compare-table { width: 100%; min-width: 720px; border-collapse: collapse; }
.compare-table th, .compare-table td {
  padding: 15px 18px; border-bottom: 1px solid var(--line);
  color: var(--cream); font-size: 14px; font-weight: 300;
  line-height: 1.8; letter-spacing: .03em; text-align: left; vertical-align: top;
}
.compare-table thead th {
  color: var(--gold); font-family: var(--font-serif);
  font-size: 16px; font-weight: 400; letter-spacing: .12em;
  background: var(--surface);
}
.compare-table tbody th {
  width: 168px; color: var(--cream-muted); font-size: 13px; font-weight: 400;
}
.compare-table tbody tr:last-child th, .compare-table tbody tr:last-child td { border-bottom: 0; }
.compare-table tbody tr:hover { background: var(--surface-hover); }
.compare-table .todo { color: var(--cream-muted); }

.compare-note { margin-top: 22px; color: var(--cream-muted); font-size: 12px; letter-spacing: .04em; line-height: 1.9; }
.compare-disclaimer {
  margin-top: 64px; padding-top: 26px; border-top: 1px solid var(--line);
  color: var(--cream-muted); font-size: 12px; line-height: 2; letter-spacing: .04em;
}

@media (max-width: 700px) {
  .page-hero { width: min(calc(100% - 32px), var(--max)); padding: 150px 0 40px; }
  .compare-figure, .compare-main { width: min(calc(100% - 32px), var(--max)); }
  .compare-main { padding-bottom: 84px; }
}
