/* ─── About Page ─── */
.about-main {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.about-eyebrow {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  opacity: 0.3;
  margin-bottom: 32px;
}

.about-quote {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
  opacity: 0.88;
  margin-bottom: 64px;
  letter-spacing: -0.3px;
  border: none;
  font-style: normal;
}

.about-body {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}

.about-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.07);
}

.about-pair:last-child { border-bottom: none; }

.about-zh {
  font-size: 15px;
  line-height: 2;
  opacity: 0.55;
  font-family: 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
  color: #fff;
}

.about-en {
  font-size: 14px;
  line-height: 1.9;
  opacity: 0.35;
  color: #fff;
  font-style: italic;
  font-family: Georgia, serif;
}

.about-cta {
  margin-top: 60px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.35;
  color: #fff;
  transition: opacity 0.2s;
}

.about-cta:hover { opacity: 0.8; }
