:root {
  --face-green: #0f684f;
  --face-deep: #0b4a3a;
  --face-gold: #b6813a;
  --face-line: #eadcc6;
  --face-paper: #fffaf1;
  --face-card: rgba(255, 253, 247, .92);
  --face-muted: #746c60;
}

body {
  margin: 0;
  background: #fbf7ef;
  color: #24332f;
  font-family: "Noto Serif SC", "Source Han Serif SC", "Microsoft YaHei", sans-serif;
}

.face-shell {
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 18%, rgba(32, 111, 81, .08), transparent 26%),
    radial-gradient(circle at 82% 12%, rgba(191, 136, 59, .10), transparent 24%),
    linear-gradient(180deg, #fffdfa 0%, #fbf4e8 100%);
}

.face-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 280px 1fr 260px;
  align-items: center;
  height: 72px;
  padding: 0 58px;
  border-bottom: 1px solid rgba(177, 142, 92, .2);
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(16px);
}

.face-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--face-deep);
  text-decoration: none;
}

.face-brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.face-brand strong {
  display: block;
  font-size: 22px;
  letter-spacing: .08em;
}

.face-brand small {
  display: block;
  margin-top: 2px;
  color: #897b68;
  font-size: 13px;
}

.face-nav {
  display: flex;
  justify-content: center;
  gap: 44px;
}

.face-nav a {
  position: relative;
  padding: 26px 0 22px;
  color: #1f2825;
  font-size: 16px;
  text-decoration: none;
}

.face-nav a.active {
  color: var(--face-green);
  font-weight: 700;
}

.face-nav a.active::after {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  bottom: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--face-green);
}

.face-header-actions {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
}

.vip-pill,
.login-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 18px;
  border: 1px solid #e6cfad;
  border-radius: 999px;
  color: #744c1a;
  background: #fff4df;
  text-decoration: none;
  font-weight: 700;
}

.login-pill {
  color: #2d473d;
  background: #fff;
}

.face-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 38px;
  width: min(1840px, calc(100% - 96px));
  min-height: 350px;
  margin: 26px auto 16px;
  padding: 46px 70px;
  overflow: hidden;
  border: 1px solid rgba(217, 191, 153, .58);
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(255, 251, 242, .96), rgba(255, 248, 236, .72)),
    radial-gradient(circle at 85% 70%, rgba(28, 106, 77, .08), transparent 28%);
  box-shadow: 0 18px 50px rgba(103, 75, 40, .08);
}

.face-hero::before,
.report-hero-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 130px;
  opacity: .35;
  background:
    radial-gradient(ellipse at 10% 100%, rgba(91, 125, 105, .22), transparent 55%),
    radial-gradient(ellipse at 80% 100%, rgba(196, 154, 95, .18), transparent 58%);
}

.face-hero-copy {
  position: relative;
  z-index: 1;
  padding-top: 18px;
}

.face-hero h1 {
  margin: 0 0 18px;
  color: var(--face-deep);
  font-size: clamp(46px, 4.6vw, 72px);
  letter-spacing: .08em;
  line-height: 1.12;
  font-family: "STKaiti", "KaiTi", "Noto Serif SC", serif;
}

.face-hero p {
  max-width: 690px;
  margin: 0;
  color: #54635d;
  font-size: 20px;
  line-height: 1.85;
}

.face-hero-actions {
  display: flex;
  gap: 28px;
  margin-top: 34px;
}

.primary-cta,
.ghost-cta,
.unlock-btn,
.download-btn,
.outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 220px;
  height: 62px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #0f7456, #0b4f3e);
  box-shadow: 0 15px 28px rgba(12, 81, 61, .22);
  text-decoration: none;
  font-size: 20px;
  font-weight: 800;
  cursor: pointer;
}

.ghost-cta,
.outline-btn {
  color: #724d1f;
  border: 1px solid #dfbd8c;
  background: rgba(255, 255, 255, .72);
  box-shadow: none;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.trust-row span {
  padding: 11px 18px;
  border: 1px solid rgba(220, 202, 174, .82);
  border-radius: 999px;
  background: rgba(255, 255, 255, .78);
  color: #415b52;
  font-weight: 700;
}

.face-hero-art {
  position: relative;
  z-index: 1;
  min-height: 300px;
}

.face-diagram {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 330px;
  height: 270px;
  transform: translate(-50%, -50%);
}

.face-diagram.mini {
  position: relative;
  left: auto;
  top: auto;
  width: 260px;
  height: 220px;
  transform: none;
  opacity: .9;
}

.face-line,
.third-line,
.eye-grid {
  position: absolute;
  border-color: rgba(183, 126, 51, .58);
}

.face-line.head {
  left: 78px;
  top: 12px;
  width: 176px;
  height: 238px;
  border: 2px solid rgba(184, 126, 51, .55);
  border-radius: 48% 48% 45% 45%;
}

.face-line.hair {
  left: 64px;
  top: 0;
  width: 205px;
  height: 82px;
  border-top: 2px solid rgba(184, 126, 51, .45);
  border-radius: 50%;
}

.face-line.brow {
  top: 102px;
  width: 52px;
  border-top: 2px solid rgba(184, 126, 51, .55);
}

.face-line.brow.left,
.face-line.eye.left { left: 112px; }
.face-line.brow.right,
.face-line.eye.right { right: 112px; }

.face-line.eye {
  top: 122px;
  width: 44px;
  height: 16px;
  border: 2px solid rgba(184, 126, 51, .5);
  border-radius: 50%;
}

.face-line.nose {
  left: 158px;
  top: 126px;
  width: 18px;
  height: 58px;
  border-left: 2px solid rgba(184, 126, 51, .46);
  border-bottom: 2px solid rgba(184, 126, 51, .46);
  border-radius: 0 0 0 12px;
}

.face-line.mouth {
  left: 135px;
  top: 204px;
  width: 62px;
  height: 18px;
  border-bottom: 2px solid rgba(184, 126, 51, .55);
  border-radius: 50%;
}

.third-line {
  left: 0;
  right: 0;
  height: 1px;
  border-top: 1px dashed rgba(184, 126, 51, .42);
}

.third-line.t1 { top: 74px; }
.third-line.t2 { top: 144px; }
.third-line.t3 { top: 218px; }

.eye-grid {
  top: 30px;
  bottom: 18px;
  width: 1px;
  border-left: 1px dashed rgba(184, 126, 51, .45);
}

.eye-grid.g1 { left: 95px; }
.eye-grid.g2 { left: 140px; }
.eye-grid.g3 { left: 190px; }
.eye-grid.g4 { left: 238px; }

.diagram-note {
  position: absolute;
  color: #584736;
  line-height: 1.5;
}

.diagram-note strong {
  display: block;
  color: #6c4b22;
  font-size: 18px;
}

.left-note {
  left: 30px;
  top: 72px;
}

.right-note {
  right: 16px;
  top: 145px;
}

.process-strip {
  display: grid;
  grid-template-columns: 170px 1fr 34px 1fr 34px 1fr 34px 1fr;
  align-items: center;
  width: min(1840px, calc(100% - 96px));
  margin: 0 auto 18px;
  padding: 18px 44px;
  border: 1px solid rgba(217, 191, 153, .48);
  border-radius: 14px;
  background: rgba(255, 255, 255, .78);
}

.process-strip > strong {
  color: var(--face-green);
  font-size: 22px;
}

.process-strip div {
  display: flex;
  align-items: center;
  gap: 14px;
}

.process-strip i {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  background: #eaf3ee;
  color: var(--face-green);
  font-style: normal;
  font-weight: 900;
}

.process-strip span {
  color: #254239;
  font-weight: 800;
}

.process-strip small {
  display: block;
  margin-top: 4px;
  color: #7a756d;
  font-weight: 400;
}

.process-strip b {
  color: #c0a27c;
  font-size: 42px;
  font-weight: 300;
}

.face-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 400px;
  gap: 24px;
  width: min(1840px, calc(100% - 96px));
  margin: 0 auto 48px;
}

.face-card,
.report-card,
.report-hero-card,
.report-toc,
.report-status {
  border: 1px solid rgba(217, 191, 153, .58);
  border-radius: 18px;
  background: var(--face-card);
  box-shadow: 0 18px 42px rgba(108, 80, 43, .06);
}

.face-card {
  padding: 28px 32px;
}

.face-card h2,
.report-card h2,
.report-toc h2,
.report-status h2 {
  margin: 0 0 20px;
  color: var(--face-deep);
  font-family: "STKaiti", "KaiTi", serif;
  font-size: 28px;
  letter-spacing: .06em;
}

.overview-card { margin-bottom: 24px; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.feature-grid article {
  min-height: 130px;
  padding: 20px 16px;
  border: 1px solid #ead8bd;
  border-radius: 12px;
  text-align: center;
  background: linear-gradient(180deg, #fffdf8, #fbf1e3);
}

.feature-grid i {
  display: block;
  color: var(--face-green);
  font-style: normal;
  font-size: 30px;
}

.feature-grid strong {
  display: block;
  margin: 10px 0 8px;
  color: var(--face-deep);
  font-size: 18px;
}

.feature-grid span {
  color: #776c60;
  font-size: 14px;
  line-height: 1.5;
}

.sample-title,
.sample-unlock {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sample-title span {
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--face-green);
  background: #e6f0e9;
  font-weight: 800;
}

.sample-preview {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 28px;
  padding: 20px;
  border-radius: 16px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.95), rgba(255,250,239,.75)),
    radial-gradient(circle at 90% 10%, rgba(196, 158, 97, .18), transparent 24%);
}

.sample-face {
  width: 170px;
  height: 190px;
  border: 1px solid rgba(184, 126, 51, .35);
  border-radius: 50% 50% 45% 45%;
  background:
    radial-gradient(circle at 40% 42%, #8c6a42 0 3px, transparent 4px),
    radial-gradient(circle at 60% 42%, #8c6a42 0 3px, transparent 4px),
    linear-gradient(180deg, #fff8ec, #f8ead6);
}

.sample-copy h3 {
  color: var(--face-deep);
  font-size: 20px;
}

.sample-copy p,
.price-card p,
.safety-card p,
.upload-card p {
  color: var(--face-muted);
  line-height: 1.8;
}

.locked-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.locked-tabs span {
  padding: 8px 14px;
  border-radius: 999px;
  color: #80705d;
  background: #f6f0e7;
}

.sample-unlock {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 12px;
  background: #edf5ef;
  color: var(--face-deep);
  font-weight: 800;
}

.sample-unlock a {
  color: #fff;
  padding: 10px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #cf963e, #b77b2f);
  text-decoration: none;
}

.face-side {
  display: grid;
  gap: 22px;
  align-content: start;
}

.upload-drop {
  position: relative;
  display: grid;
  min-height: 210px;
  place-items: center;
  padding: 24px;
  border: 1px dashed #d6b98e;
  border-radius: 16px;
  background: #fffaf2;
  text-align: center;
  cursor: pointer;
}

.upload-drop input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.upload-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--face-green);
  font-size: 28px;
}

.upload-drop strong {
  color: var(--face-deep);
  font-size: 20px;
}

.upload-drop small {
  color: #84786a;
}

#face-photo-preview {
  max-width: 100%;
  max-height: 190px;
  border-radius: 14px;
  object-fit: cover;
}

.mini-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 18px;
}

.mini-fields label {
  display: grid;
  gap: 6px;
  color: #5b554d;
  font-weight: 700;
}

.mini-fields input {
  height: 42px;
  padding: 0 12px;
  border: 1px solid #e4d3bb;
  border-radius: 10px;
  background: #fff;
}

.gender-row,
.agree-line {
  display: flex;
  gap: 14px;
  margin-top: 14px;
  color: #4f5c55;
}

.agree-line {
  align-items: center;
}

.unlock-btn {
  width: 100%;
  margin-top: 18px;
}

.upload-status {
  min-height: 22px;
  margin: 12px 0 0;
  color: var(--face-green);
  font-weight: 700;
}

.price-line {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 18px 0;
  color: #a87328;
  font-size: 24px;
}

.price-line strong {
  font-size: 46px;
  font-family: Georgia, serif;
}

.price-line del {
  color: #a79a88;
  font-size: 20px;
}

.price-line span {
  padding: 5px 10px;
  border-radius: 8px;
  color: #93601f;
  background: #f7e5c7;
  font-size: 14px;
}

.price-card ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 0;
  list-style: none;
  color: #465f56;
}

.safety-card p {
  margin: 8px 0;
}

.face-report-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr) 250px;
  gap: 28px;
  width: min(1840px, calc(100% - 72px));
  margin: 26px auto 40px;
}

.report-toc,
.report-status {
  position: sticky;
  top: 92px;
  align-self: start;
  padding: 24px 18px;
}

.report-toc a {
  display: flex;
  align-items: center;
  height: 46px;
  padding: 0 16px;
  border-radius: 10px;
  color: #28443b;
  text-decoration: none;
  font-weight: 700;
}

.report-toc a.active,
.report-toc a:hover {
  color: #fff;
  background: linear-gradient(135deg, #176f55, #0f4c3c);
}

.toc-note,
.privacy-note {
  margin-top: 30px;
  padding: 16px;
  border-radius: 12px;
  color: #73695d;
  background: #f8f0e4;
  line-height: 1.7;
  text-align: center;
}

.report-content {
  display: grid;
  gap: 18px;
}

.report-hero-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 22px;
  min-height: 280px;
  overflow: hidden;
  padding: 32px 44px;
}

.report-hero-card h1 {
  margin: 0 0 12px;
  color: var(--face-deep);
  font-size: 42px;
  font-family: "STKaiti", "KaiTi", serif;
}

.report-hero-card h1 span {
  padding: 4px 10px;
  border: 1px solid #ddbd8b;
  border-radius: 8px;
  color: #92621e;
  background: #f8e9cc;
  font-size: 16px;
  vertical-align: middle;
}

.report-hero-card p {
  position: relative;
  z-index: 1;
  color: #665d51;
  line-height: 1.8;
}

.report-tags,
.side-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 22px 0;
}

.report-tags span,
.side-tags span {
  padding: 8px 14px;
  border: 1px solid #e1d5c1;
  border-radius: 999px;
  color: var(--face-green);
  background: #f2f7f2;
  font-weight: 800;
}

.report-card {
  padding: 24px 28px;
}

.three-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.three-columns article,
.rule-card article {
  padding-left: 18px;
  border-left: 1px solid #eadcc8;
}

.report-card h3 {
  margin: 0 0 8px;
  color: var(--face-green);
}

.report-card p {
  color: #625b52;
  line-height: 1.8;
}

.report-card:not(.small) {
  display: block;
}

#personality.report-card {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 26px;
  align-items: center;
}

.mini-radar {
  position: relative;
  width: 230px;
  height: 170px;
  margin-top: 18px;
  background:
    radial-gradient(circle, rgba(22, 111, 85, .10), transparent 58%),
    conic-gradient(from 18deg, rgba(22,111,85,.25), rgba(177,129,58,.22), rgba(22,111,85,.16), rgba(22,111,85,.25));
  clip-path: polygon(50% 0, 98% 36%, 80% 100%, 20% 100%, 2% 36%);
}

.mini-radar span,
.mini-radar i {
  position: absolute;
  color: var(--face-deep);
  font-weight: 800;
  font-style: normal;
}

.mini-radar span:nth-child(1) { left: 88px; top: -4px; }
.mini-radar span:nth-child(2) { right: -8px; top: 66px; }
.mini-radar span:nth-child(3) { right: 32px; bottom: 0; }
.mini-radar span:nth-child(4) { left: -8px; top: 72px; }
.mini-radar i { left: 72px; top: 74px; }

.confidence {
  padding: 22px;
  border-radius: 14px;
  background: linear-gradient(180deg, #fff8eb, #fffdf8);
  text-align: center;
}

.confidence span {
  color: #5f5a52;
}

.confidence strong {
  display: block;
  margin: 10px 0;
  color: var(--face-green);
  font-size: 44px;
  font-family: Georgia, serif;
}

.confidence small {
  color: #746f68;
  line-height: 1.7;
}

.report-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.report-card.small {
  min-height: 130px;
}

.unlock-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 30px;
  border: 1px solid #e8d3b0;
  border-radius: 16px;
  background:
    linear-gradient(90deg, #fff8ea, #fffdf8),
    radial-gradient(circle at 95% 20%, rgba(19, 101, 76, .10), transparent 30%);
}

.unlock-banner strong {
  color: var(--face-deep);
  font-size: 20px;
}

.unlock-banner p {
  margin: 6px 0 0;
  color: #70695f;
}

.unlock-banner button {
  height: 52px;
  padding: 0 30px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #ce943b, #b77a2c);
  font-weight: 900;
  cursor: pointer;
}

.status-ok {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--face-green);
  font-size: 22px;
  font-weight: 900;
}

.status-ok::before {
  content: "✓";
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 2px solid var(--face-green);
  border-radius: 50%;
}

.score-block {
  margin: 26px 0;
  padding: 22px 0;
  border-top: 1px solid #eadcc8;
  border-bottom: 1px solid #eadcc8;
}

.score-block span {
  color: #5f5a52;
}

.score-block strong {
  display: block;
  margin: 8px 0;
  color: var(--face-green);
  font-size: 34px;
}

.score-block p,
.report-status p {
  color: #6d665f;
  line-height: 1.7;
}

.download-btn,
.outline-btn {
  width: 100%;
  min-width: 0;
  height: 50px;
  margin-top: 14px;
  font-size: 16px;
}

@media (max-width: 1180px) {
  .face-header {
    grid-template-columns: 1fr;
    height: auto;
    gap: 16px;
    padding: 16px 24px;
  }

  .face-nav,
  .face-header-actions {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .face-hero,
  .face-main-grid,
  .face-report-layout {
    width: calc(100% - 32px);
  }

  .face-hero,
  .face-main-grid,
  .report-hero-card,
  .face-report-layout {
    grid-template-columns: 1fr;
  }

  .process-strip {
    width: calc(100% - 32px);
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .process-strip b {
    display: none;
  }

  .feature-grid,
  .report-grid,
  .three-columns {
    grid-template-columns: 1fr;
  }

  .report-toc,
  .report-status {
    position: static;
  }
}

.face-detail-body {
  min-height: 100vh;
}

.face-detail-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr) 260px;
  gap: 28px;
  width: min(1760px, calc(100% - 72px));
  margin: 22px auto 40px;
}

.face-detail-toc,
.face-detail-side {
  position: sticky;
  top: 96px;
  align-self: start;
  border: 1px solid var(--face-line);
  border-radius: 20px;
  background: rgba(255, 252, 246, .92);
  box-shadow: var(--face-shadow);
  padding: 20px;
}

.face-detail-toc h3,
.face-detail-side h3 {
  margin: 0 0 14px;
  color: var(--face-deep);
  font-size: 20px;
}

.face-detail-toc a {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  color: #4f5a50;
  text-decoration: none;
}

.face-detail-toc a:hover {
  background: rgba(39, 113, 82, .1);
  color: var(--face-green);
}

.face-detail-main {
  min-width: 0;
}

.face-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 28px;
  min-height: 260px;
  border: 1px solid var(--face-line);
  border-radius: 22px;
  background:
    radial-gradient(circle at 8% 10%, rgba(221, 168, 84, .12), transparent 30%),
    linear-gradient(135deg, rgba(255, 252, 246, .96), rgba(255, 249, 238, .9));
  box-shadow: var(--face-shadow);
  padding: 36px 46px;
  overflow: hidden;
}

.face-detail-hero h1 {
  margin: 0 0 14px;
  color: var(--face-deep);
  font-family: "STKaiti", "KaiTi", serif;
  font-size: clamp(34px, 3vw, 56px);
  letter-spacing: .05em;
}

.face-detail-hero h1 span {
  display: inline-block;
  margin-left: 12px;
  padding: 4px 10px;
  border-radius: 8px;
  background: #f2dfbd;
  color: #8b5b1f;
  font-family: inherit;
  font-size: 16px;
}

.face-detail-hero p {
  color: #6d665f;
}

.face-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.face-detail-tags span {
  padding: 9px 16px;
  border: 1px solid #dfd2be;
  border-radius: 999px;
  background: rgba(246, 243, 235, .8);
  color: var(--face-green);
  font-weight: 800;
}

.face-line-art {
  position: relative;
  min-height: 220px;
  border-left: 1px dashed rgba(196, 139, 62, .35);
}

.face-oval {
  position: absolute;
  inset: 20px 105px 18px;
  border: 2px solid rgba(196, 139, 62, .38);
  border-radius: 48% 48% 52% 52%;
}

.face-eye,
.face-nose,
.face-mouth {
  position: absolute;
  border-color: rgba(29, 87, 64, .42);
}

.face-eye {
  top: 92px;
  width: 38px;
  height: 14px;
  border-top: 2px solid rgba(29, 87, 64, .42);
  border-radius: 50%;
}

.face-eye.left {
  left: 146px;
}

.face-eye.right {
  right: 146px;
}

.face-nose {
  top: 108px;
  left: 50%;
  width: 1px;
  height: 50px;
  border-left: 2px solid rgba(196, 139, 62, .35);
}

.face-mouth {
  left: 50%;
  bottom: 52px;
  width: 72px;
  height: 22px;
  transform: translateX(-50%);
  border-bottom: 2px solid rgba(29, 87, 64, .42);
  border-radius: 50%;
}

.face-detail-content {
  margin-top: 24px;
}

.face-detail-content > h1 {
  display: none;
}

.face-detail-card {
  margin-bottom: 18px;
  border: 1px solid var(--face-line);
  border-radius: 20px;
  background: rgba(255, 252, 246, .94);
  box-shadow: var(--face-shadow);
  padding: 28px 34px;
}

.face-detail-card h2 {
  margin: 0 0 16px;
  color: var(--face-deep);
  font-family: "STKaiti", "KaiTi", serif;
  font-size: 28px;
}

.face-detail-card p,
.face-detail-card li {
  color: #4f4a43;
  font-size: 16px;
  line-height: 1.9;
}

.face-detail-card ul {
  margin: 0;
  padding-left: 20px;
}

.side-panel {
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid #eadcc8;
}

@media print {
  .face-topbar,
  .face-detail-toc,
  .face-detail-side {
    display: none;
  }

  .face-detail-layout {
    display: block;
    width: 100%;
    margin: 0;
  }

  .face-detail-card,
  .face-detail-hero {
    box-shadow: none;
    break-inside: avoid;
  }
}

@media (max-width: 1180px) {
  .face-detail-layout,
  .face-detail-hero {
    grid-template-columns: 1fr;
  }

  .face-detail-layout {
    width: calc(100% - 32px);
  }

  .face-detail-toc,
  .face-detail-side {
    position: static;
  }
}
