/* About Us — 三模块：单图 + 文本，交替左右，拼贴感（参考图） */

.about-page {
  padding: 4rem 8vw 5rem;
  max-width: 1600px;
  margin: 0 auto;
}

.about-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  letter-spacing: 0.05em;
  color: var(--text-on-light);
  margin-bottom: 2rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--hairline);
}

.about-location {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: var(--brand-gold);
  margin-bottom: 1.5rem;
}

/* 通用模块：文本 + 单图，左右交替 */
.about-module {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 3rem;
  align-items: start;
  margin-bottom: 4rem;
}

.about-module__heading {
  font-family: var(--font-display);
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  color: var(--text-on-light);
  margin: 0 0 1rem;
}

.about-module__body {
  font-size: clamp(0.9375rem, 1.2vw, 1.0625rem);
  line-height: 1.8;
  color: var(--text-on-light);
  opacity: 0.92;
  margin: 0;
}

.about-module__img {
  overflow: hidden;
}

.about-module__img img {
  width: 100%;
  height: auto;
  display: block;
  min-height: 18rem;
  object-fit: cover;
}

/* 模块 1、3：文字左，图右；图略叠入文字区（拼贴感） */
.about-module--text-left .about-module__text {
  grid-column: 1;
  grid-row: 1;
  max-width: 36rem;
}

.about-module--text-left .about-module__img {
  grid-column: 2;
  grid-row: 1;
  margin-left: -4%;
  position: relative;
  z-index: 0;
}

.about-module--text-left .about-module__text {
  position: relative;
  z-index: 1;
}

/* 模块 2：文字右，图左 */
.about-module--text-right .about-module__img {
  grid-column: 1;
  grid-row: 1;
  margin-right: -4%;
  position: relative;
  z-index: 0;
}

.about-module--text-right .about-module__text {
  grid-column: 2;
  grid-row: 1;
  text-align: right;
  max-width: 36rem;
  justify-self: end;
  position: relative;
  z-index: 1;
}

.about-module--text-right .about-module__heading {
  text-align: right;
}

.about-module--text-right .about-module__body {
  text-align: left;
}

/* ---------- 手机端：单列堆叠，取消重叠 ---------- */
@media (max-width: 767px) {
  .about-page {
    padding: 3rem 5vw 4rem;
  }

  .about-module {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
  }

  .about-module--text-left .about-module__text,
  .about-module--text-right .about-module__text {
    grid-column: 1;
    grid-row: 1;
    max-width: none;
    text-align: left;
    justify-self: start;
  }

  .about-module--text-left .about-module__img,
  .about-module--text-right .about-module__img {
    grid-column: 1;
    grid-row: 2;
    margin-left: 0;
    margin-right: 0;
  }

  .about-module--text-right .about-module__heading,
  .about-module--text-right .about-module__body {
    text-align: left;
  }

  .about-module__img img {
    min-height: 14rem;
  }
}
