/* ══════════════════════════════════════
   AURA AESTHETIC — Doctor Page
   Mobile-first → Desktop @1024px
   ══════════════════════════════════════ */


/* ══════════════════════════════════
   HERO — Doctor Portrait + Bio
   Mobile: 390x580, portrait top-center, text below
   Desktop: 1440x700, portrait right, text left
   ══════════════════════════════════ */
.doc-hero {
  background: var(--c-bg-dark);
  position: relative;
  overflow: hidden;
  min-height: 580px;
}

/* ── Portrait ── */
.doc-hero__portrait {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 300px;
  border-radius: 100px;
  overflow: hidden;
  z-index: 1;
}

.doc-hero__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.doc-hero__portrait-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to top, var(--c-bg-dark), transparent);
}

/* ── Content ── */
.doc-hero__content {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 2;
}

.doc-hero__tag {
  position: absolute;
  top: 50px;
  left: 0;
  font-family: var(--ff-body);
  font-size: 9px;
  letter-spacing: 4px;
  color: var(--c-accent);
}

.doc-hero__name {
  margin-top: 340px;
  font-family: var(--ff-display);
  font-size: 44px;
  font-weight: 700;
  color: var(--c-white);
  line-height: 1.1;
}

.doc-hero__title-cn {
  font-family: var(--ff-heading);
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
}

.doc-hero__desc {
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
}

.doc-hero__desc--desktop {
  display: none;
}

@media (min-width: 1024px) {
  .doc-hero {
    min-height: 700px;
  }

  .doc-hero__portrait {
    top: 60px;
    left: calc(50% + 10px);
    transform: none;
    width: 460px;
    height: 600px;
    border-radius: 230px;
  }

  .doc-hero__portrait-fade {
    height: 200px;
  }

  .doc-hero__content {
    left: 64px;
    right: auto;
    width: 620px;
    top: 120px;
    bottom: auto;
    gap: 20px;
  }

  .doc-hero__tag {
    position: static;
    font-size: 11px;
    letter-spacing: 5px;
  }

  .doc-hero__name {
    margin-top: 0;
    font-size: 72px;
  }

  .doc-hero__title-cn {
    font-size: 20px;
  }

  .doc-hero__desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.47);
    line-height: 1.9;
    max-width: 500px;
  }

  .doc-hero__desc--desktop {
    display: block;
  }

  .doc-hero__desc--mobile {
    display: none;
  }
}


/* ══════════════════════════════════
   PHILOSOPHY — Quote Section
   ══════════════════════════════════ */
.doc-quote {
  background: var(--c-bg-warm);
}

.doc-quote__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 24px;
  gap: 16px;
}

.doc-quote__tag {
  display: none;
}

.doc-quote__text {
  font-family: var(--ff-calligraphy);
  font-size: 26px;
  font-weight: 400;
  color: var(--c-text);
  line-height: 1.5;
  font-style: normal;
}

.doc-quote__text--desktop {
  display: none;
}

.doc-quote__line {
  width: 36px;
  height: 2px;
  border-radius: 1px;
  background: rgba(196, 150, 122, 0.33);
}

.doc-quote__cite {
  font-family: var(--ff-body);
  font-size: 10px;
  font-weight: 400;
  color: rgba(75, 85, 99, 0.53);
  letter-spacing: 3px;
  font-style: normal;
}

.doc-quote__cite--desktop {
  display: none;
}

@media (min-width: 1024px) {
  .doc-quote__inner {
    padding: 80px 64px;
    gap: 24px;
  }

  .doc-quote__tag {
    display: block;
    font-family: var(--ff-body);
    font-size: 11px;
    letter-spacing: 5px;
    color: var(--c-accent);
    text-transform: uppercase;
  }

  .doc-quote__text {
    font-size: 36px;
    max-width: 600px;
  }

  .doc-quote__text--desktop {
    display: inline;
  }

  .doc-quote__text--mobile {
    display: none;
  }

  .doc-quote__line {
    width: 48px;
  }

  .doc-quote__cite {
    font-size: 12px;
  }

  .doc-quote__cite--desktop {
    display: inline;
  }

  .doc-quote__cite--mobile {
    display: none;
  }
}


/* ══════════════════════════════════
   TRUST — Credentials Section
   Background image + overlay + content
   ══════════════════════════════════ */
.doc-trust {
  position: relative;
  overflow: hidden;
  background: var(--c-bg-dark);
  min-height: 520px;
}

/* Background images */
.doc-trust__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.doc-trust__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.doc-trust__bg--desktop {
  display: none;
}

.doc-trust__bg--mobile {
  opacity: 0.55;
}

/* Overlay gradient (Top & Bottom black masks) */
.doc-trust__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-color: rgba(12, 12, 12, 0.35);
  background-image: 
    linear-gradient(to bottom, #0C0C0C 0%, transparent 20%),
    linear-gradient(to top, #0C0C0C 0%, transparent 25%);
}

/* Content */
.doc-trust__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  padding: 0 24px;
  min-height: 520px;
}

.doc-trust__statement {
  font-family: var(--ff-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--c-white);
  line-height: 1.4;
}

/* Stats row */
.doc-trust__stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.doc-trust__stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.doc-trust__stat-num {
  font-family: var(--ff-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--c-white);
}

.doc-trust__stat-num--accent {
  color: var(--c-accent);
}

.doc-trust__stat-label {
  font-family: var(--ff-body);
  font-size: 10px;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.27);
}

.doc-trust__dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.13);
  flex-shrink: 0;
}

/* Trust bar — mobile: vertical */
.doc-trust__bar {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.doc-trust__bar-item {
  font-family: var(--ff-body);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.47);
}

@media (min-width: 1024px) {
  .doc-trust {
    min-height: 680px;
  }

  .doc-trust__bg--desktop {
    display: block;
    opacity: 0.5;
  }

  .doc-trust__bg--mobile {
    display: none;
  }

  /* Desktop: left dark (text), right clear (image visible), plus top/bottom blend */
  .doc-trust__overlay {
    background-color: transparent;
    background-image: 
      linear-gradient(90deg, #0C0C0C 0%, #0C0C0CCC 35%, #0C0C0C44 60%, transparent 100%),
      linear-gradient(to bottom, #0C0C0C 0%, transparent 15%),
      linear-gradient(to top, #0C0C0C 0%, transparent 15%);
  }

  .doc-trust__content {
    gap: 32px;
    padding: 0 64px;
    min-height: 680px;
    max-width: 1440px;
    margin: 0 auto;
  }

  .doc-trust__statement {
    font-size: 52px;
    line-height: 1.35;
    max-width: 700px;
  }

  .doc-trust__stats {
    gap: 48px;
  }

  .doc-trust__stat {
    gap: 4px;
  }

  .doc-trust__stat-num {
    font-size: 48px;
  }

  .doc-trust__stat-label {
    font-size: 12px;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.33);
  }

  .doc-trust__dot {
    width: 4px;
    height: 4px;
  }

  /* Desktop: horizontal bar */
  .doc-trust__bar {
    flex-direction: row;
    gap: 32px;
  }

  .doc-trust__bar-item {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.53);
  }
}


/* ══════════════════════════════════
   CTA
   ══════════════════════════════════ */
.doc-cta {
  background: var(--c-bg-dark);
}

.doc-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 24px;
  gap: 16px;
}

.doc-cta__title {
  font-family: var(--ff-heading);
  font-size: 26px;
  font-weight: 700;
  color: var(--c-white);
}

.doc-cta__desc {
  font-family: var(--ff-body);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.33);
}

.doc-cta__desc--desktop {
  display: none;
}

.doc-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  padding: 14px 32px;
  background: var(--c-accent);
  border-radius: var(--r-pill);
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--c-white);
  cursor: pointer;
  transition: background var(--t-fast), transform var(--t-fast);
}

.doc-cta__btn:active {
  transform: scale(0.97);
}

.doc-cta__btn span {
  font-size: 16px;
}

@media (min-width: 1024px) {
  .doc-cta__inner {
    padding: 80px 64px;
    gap: 20px;
  }

  .doc-cta__title {
    font-size: 40px;
  }

  .doc-cta__desc {
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.4);
  }

  .doc-cta__desc--desktop {
    display: block;
  }

  .doc-cta__desc--mobile {
    display: none;
  }

  .doc-cta__btn {
    margin-top: 8px;
    padding: 16px 40px;
    font-size: 14px;
    gap: 10px;
  }

  .doc-cta__btn span {
    font-size: 18px;
  }

  .doc-cta__btn:hover {
    background: #b88568;
    transform: translateY(-1px);
  }
}